We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2eb536f + 4358b2d commit ad50fd7Copy full SHA for ad50fd7
dockerfiles/stable-trusty/Dockerfile
@@ -0,0 +1,19 @@
1
+FROM ubuntu:14.04
2
+
3
+# all in one RUN to produce less, smaller layers
4
+RUN bash -c "\
5
+ sudo apt-get -qqy update && \
6
+ sudo apt-get -qqy upgrade && \
7
+ sudo apt-get -qqy install wget libicu-dev libunwind8-dev libcurl3 libcurl4-gnutls-dev && \
8
+ sudo apt-get clean && \
9
+ sudo rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*"
10
11
12
+ mkdir /opt/az && \
13
+ cd /opt/az && \
14
+ wget https://azurecludrops.blob.core.windows.net/blessed/ubuntu.14.04-x64.latest.tar.gz && \
15
+ tar xvzf ubuntu.14.04-x64.latest.tar.gz"
16
17
+ENV PATH "$PATH:/opt/az/ubuntu.14.04-x64/"
18
19
+WORKDIR /opt/az/ubuntu.14.04-x64/
0 commit comments