Skip to content

Commit

Permalink
Update psql to 12
Browse files Browse the repository at this point in the history
  • Loading branch information
martin31821 committed Apr 15, 2020
1 parent 7eb058b commit 179d98a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
FROM minio/mc
FROM alpine:3.11

RUN apk add postgresql-client mysql-client bash tar influxdb curl jq
RUN apk add --no-cache ca-certificates
RUN apk add --no-cache --virtual .build-deps curl && curl https://dl.min.io/client/mc/release/linux-amd64/mc > /usr/bin/mc && chmod +x /usr/bin/mc && apk del .build-deps
RUN apk add --no-cache postgresql-client mysql-client bash tar influxdb curl jq
ADD s3_to_s3.sh /usr/bin/s3_to_s3.sh
RUN chmod +x /usr/bin/s3_to_s3.sh

ENTRYPOINT ["/bin/bash"]
ENTRYPOINT ["/bin/bash"]

0 comments on commit 179d98a

Please sign in to comment.