Skip to content

Commit 53c6e79

Browse files
committed
chore(dockerfile): improve
1 parent 815df9b commit 53c6e79

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.env

Dockerfile

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
FROM alpine:latest
22

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/*
3+
RUN apk update
4+
RUN apk add coreutils postgresql-client python3 py3-pip openssl --no-cache
5+
RUN pip3 install awscli
96

107
COPY entrypoint.sh /entrypoint.sh
118

0 commit comments

Comments
 (0)