We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 815df9b commit 53c6e79Copy full SHA for 53c6e79
.gitignore
@@ -0,0 +1 @@
1
+.env
Dockerfile
@@ -1,11 +1,8 @@
FROM alpine:latest
2
3
-RUN apk update \
4
- && apk add coreutils \
5
- && apk add postgresql-client \
6
- && apk add python3 py3-pip && pip3 install --upgrade pip && pip3 install awscli \
7
- && apk add openssl \
8
- && rm -rf /var/cache/apk/*
+RUN apk update
+RUN apk add coreutils postgresql-client python3 py3-pip openssl --no-cache
+RUN pip3 install awscli
9
10
COPY entrypoint.sh /entrypoint.sh
11
0 commit comments