-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7eb058b
commit 179d98a
Showing
1 changed file
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |