We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 929c056 commit 5a9a0b5Copy full SHA for 5a9a0b5
stacks/base/Dockerfile
@@ -1,10 +1,14 @@
1
FROM ubuntu:12.10
2
3
+# Speedup apt-get
4
+RUN echo 'force-unsafe-io' | tee /etc/dpkg/dpkg.cfg.d/02apt-speedup
5
+
6
+# Reduce image size
7
+RUN echo 'DPkg::Post-Invoke {"/bin/rm -f /var/cache/apt/archives/*.deb || true";};' | tee /etc/apt/apt.conf.d/no-cache
8
9
# Install utilities
10
RUN apt-get -y update
-RUN apt-get -y install git
-RUN apt-get -y install curl wget
-RUN apt-get -y install build-essential
11
+RUN apt-get -y install git-core curl wget build-essential make
12
13
# Command line extras
14
RUN apt-get -y install vim nano
0 commit comments