Skip to content

Commit 52fcc1d

Browse files
committed
removed aws, docker (this containers are not supposed to perform builds and pushes)
1 parent b958b60 commit 52fcc1d

File tree

2 files changed

+2
-46
lines changed

2 files changed

+2
-46
lines changed

jessie-chrome/Dockerfile

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,6 @@ RUN \
2727
gpg --batch --verify tini-amd64.asc tini-amd64 && mv tini-amd64 /sbin/tini && chmod 755 /sbin/tini && \
2828
rm -rf /tmp/*
2929

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-
4730
## Install latest Chrome package
4831
#
4932
RUN curl -sSL https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \

jessie/Dockerfile

Lines changed: 2 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,12 @@ LABEL com.plasmops.vendor=PlasmOps \
77

88
ENV LANG=C.UTF-8
99

10-
# Docker env variables
11-
ENV DOCKER_CHANNEL stable
12-
ENV DOCKER_VERSION 18.09.0
13-
ENV DOCKER_SHASUM 08795696e852328d66753963249f4396af2295a7fe2847b839f7102e25e47cb9
14-
1510
ARG TINI_VERSION=v0.18.0
1611
ENV TINI_ENTRYPOINT yes
1712

1813
## Install additional software
1914
#
20-
RUN apt install gnupg
15+
RUN apt install gnupg
2116

2217
## Tini init installation
2318
RUN \
@@ -34,30 +29,8 @@ RUN \
3429
gpg --batch --verify tini-amd64.asc tini-amd64 && mv tini-amd64 /sbin/tini && chmod 755 /sbin/tini && \
3530
rm -rf /tmp/*
3631

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-
5932
COPY /entrypoint.sh /
6033
ENTRYPOINT ["/entrypoint.sh"]
6134
CMD ["/bin/bash"]
6235

63-
WORKDIR /code
36+
WORKDIR /code

0 commit comments

Comments
 (0)