File tree Expand file tree Collapse file tree 3 files changed +8
-31
lines changed Expand file tree Collapse file tree 3 files changed +8
-31
lines changed Original file line number Diff line number Diff line change 1
- FROM alpine:3.12
1
+ FROM alpine:3.13
2
2
LABEL maintainer=
"Fedor Borshev <[email protected] >"
3
3
4
- ADD install.sh install.sh
5
- RUN sh install.sh && rm install.sh
4
+ RUN apk update \
5
+ && apk --no-cache add dumb-init postgresql-client curl aws-cli
6
+
7
+ RUN curl -L https://github.com/odise/go-cron/releases/download/v0.0.7/go-cron-linux.gz | zcat > /usr/local/bin/go-cron && chmod +x /usr/local/bin/go-cron
6
8
7
9
ENV POSTGRES_DATABASE **None**
8
10
ENV POSTGRES_HOST **None**
@@ -19,8 +21,8 @@ ENV S3_ENDPOINT **None**
19
21
ENV S3_S3V4 no
20
22
ENV SCHEDULE **None**
21
23
22
- ADD run .sh run.sh
23
- ADD backup.sh backup.sh
24
+ ADD entrypoint .sh .
25
+ ADD backup.sh .
24
26
25
27
ENTRYPOINT ["/usr/bin/dumb-init" , "--" ]
26
- CMD ["sh" , "run .sh" ]
28
+ CMD ["sh" , "entrypoint .sh" ]
File renamed without changes.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments