File tree Expand file tree Collapse file tree 2 files changed +2
-46
lines changed Expand file tree Collapse file tree 2 files changed +2
-46
lines changed Original file line number Diff line number Diff line change 27
27
gpg --batch --verify tini-amd64.asc tini-amd64 && mv tini-amd64 /sbin/tini && chmod 755 /sbin/tini && \
28
28
rm -rf /tmp/*
29
29
30
- # # Install docker-ce
31
- #
32
- RUN \
33
- if ! curl -#fL -o docker.tgz "https://download.docker.com/linux/static/${DOCKER_CHANNEL}/x86_64/docker-${DOCKER_VERSION}.tgz" ; then \
34
- echo >&2 "error: failed to download 'docker-${DOCKER_VERSION}' from '${DOCKER_CHANNEL}' for x86_64" ; \
35
- exit 1; \
36
- fi; \
37
- \
38
- tar -xzf docker.tgz \
39
- --strip-components 1 \
40
- -C /usr/local/bin && \
41
- \
42
- echo "${DOCKER_SHASUM} docker.tgz" | sha256sum -c && rm docker.tgz
43
- # # We don't install custom modprobe, since haven't run into issues yet (see the link bellow)
44
- # https://github.com/docker-library/docker/blob/master/18.06/modprobe.sh
45
- #
46
-
47
30
# # Install latest Chrome package
48
31
#
49
32
RUN curl -sSL https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \
Original file line number Diff line number Diff line change @@ -7,17 +7,12 @@ LABEL com.plasmops.vendor=PlasmOps \
7
7
8
8
ENV LANG=C.UTF-8
9
9
10
- # Docker env variables
11
- ENV DOCKER_CHANNEL stable
12
- ENV DOCKER_VERSION 18.09.0
13
- ENV DOCKER_SHASUM 08795696e852328d66753963249f4396af2295a7fe2847b839f7102e25e47cb9
14
-
15
10
ARG TINI_VERSION=v0.18.0
16
11
ENV TINI_ENTRYPOINT yes
17
12
18
13
# # Install additional software
19
14
#
20
- RUN apt install gnupg
15
+ RUN apt install gnupg
21
16
22
17
# # Tini init installation
23
18
RUN \
34
29
gpg --batch --verify tini-amd64.asc tini-amd64 && mv tini-amd64 /sbin/tini && chmod 755 /sbin/tini && \
35
30
rm -rf /tmp/*
36
31
37
- # # AWS tools
38
- RUN \
39
- pip install awscli && apk add --no-cache groff less mailcap && \
40
- ( rm -rf /root/.cache /root/.* 2>/dev/null || /bin/true )
41
-
42
- # # Install docker-ce
43
- #
44
- RUN \
45
- if ! curl -#fL -o docker.tgz "https://download.docker.com/linux/static/${DOCKER_CHANNEL}/x86_64/docker-${DOCKER_VERSION}.tgz" ; then \
46
- echo >&2 "error: failed to download 'docker-${DOCKER_VERSION}' from '${DOCKER_CHANNEL}' for x86_64" ; \
47
- exit 1; \
48
- fi; \
49
- \
50
- tar -xzf docker.tgz \
51
- --strip-components 1 \
52
- -C /usr/local/bin && \
53
- \
54
- echo "${DOCKER_SHASUM} docker.tgz" | sha256sum -c && rm docker.tgz
55
- # # We don't install custom modprobe, since haven't run into issues yet (see the link bellow)
56
- # https://github.com/docker-library/docker/blob/master/18.06/modprobe.sh
57
- #
58
-
59
32
COPY /entrypoint.sh /
60
33
ENTRYPOINT ["/entrypoint.sh" ]
61
34
CMD ["/bin/bash" ]
62
35
63
- WORKDIR /code
36
+ WORKDIR /code
You can’t perform that action at this time.
0 commit comments