@@ -21,7 +21,7 @@ RUN mkdir -p /home/developer/
21
21
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
22
22
23
23
LABEL maintainer=
"Joseph Sinfield <[email protected] >"
24
- LABEL runcommand="docker run --rm -ti -v /var/run/docker.sock:/var/run/docker.sock-p 3000:3000 -e http_proxy -e https_proxy -e HTTP_PROXY -e HTTPS_PROXY -e SSH_AUTH_SOCK=\$ SSH_AUTH_SOCK -v $(dirname \$ SSH_AUTH_SOCK):$(dirname \$ SSH_AUTH_SOCK) -v $(pwd):/home/developer/workspace -w /home/developer/workspace jslog/development-env"
24
+ LABEL runcommand="docker run --rm -ti -v /var/run/docker.sock:/var/run/docker.sock -p 3000:3000 -e http_proxy -e https_proxy -e HTTP_PROXY -e HTTPS_PROXY -e SSH_AUTH_SOCK=\$ SSH_AUTH_SOCK -v $(dirname \$ SSH_AUTH_SOCK):$(dirname \$ SSH_AUTH_SOCK) -v $(pwd):/home/developer/workspace -w /home/developer/workspace jslog/development-env"
25
25
26
26
# Set debconf to run non-interactively
27
27
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
@@ -73,7 +73,7 @@ COPY dotfiles/jest.config.js /home/developer/jest.config.js
73
73
RUN source /root/.bashrc
74
74
75
75
# Install docker ce so that host docker instances can be manipulated from this env
76
- RUN apt-get update && apt-get install \
76
+ RUN apt-get update && apt-get install -y -q --no-install-recommends \
77
77
apt-transport-https \
78
78
ca-certificates \
79
79
curl \
@@ -82,11 +82,14 @@ RUN apt-get update && apt-get install \
82
82
83
83
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
84
84
RUN add-apt-repository \
85
- "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
86
- $(lsb_release -cs) \
87
- stable"
85
+ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
86
+ $(lsb_release -cs) \
87
+ stable"
88
88
89
- RUN apt-get update && apt-get install docker-ce docker-ce-cli containerd.io
89
+ RUN apt-get update && apt-get install -y -q --no-install-recommends \
90
+ docker-ce \
91
+ docker-ce-cli \
92
+ containerd.io
90
93
91
94
# Copy project templates with local dotfiles
92
95
COPY templates/tdd/ /home/developer/templates/tdd/
@@ -98,4 +101,4 @@ COPY templates/express-app/ /home/developer/templates/express-app/
98
101
COPY dotfiles/.gitignore /home/developer/templates/express-app/.
99
102
COPY dotfiles/.eslintrc.json /home/developer/templates/express-app/.
100
103
101
- LABEL version="1.1.3 "
104
+ LABEL version="1.1.4 "
0 commit comments