Skip to content

Commit cf62479

Browse files
committed
Try to fix aws cli dep in Dockerfile
1 parent 34d6f31 commit cf62479

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
FROM publicintegrity/loader
22

3+
RUN pip install awscli
4+
RUN apk --update add jq sed curl gzip && rm -rf /var/cache/apk/*
5+
36
# https://github.com/nodejs/docker-node/blob/master/6/onbuild/Dockerfile
47
RUN mkdir -p /usr/src/app
58
WORKDIR /usr/src/app
69

710
ARG NODE_ENV
811
ENV NODE_ENV $NODE_ENV
912
COPY . /usr/src/app
10-
RUN apk add aws-cli --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ --allow-untrusted && rm -rf /var/cache/apk/*
11-
RUN apk --update add jq sed curl gzip && rm -rf /var/cache/apk/*
1213
RUN npm ci && npm cache clean --force
1314

14-
ENTRYPOINT ["node","./bin/fec"]
15+
CMD ["node","./bin/fec"]

0 commit comments

Comments
 (0)