snapshots #5

Merged
jandre merged 37 commits from snapshots into master 2023-04-24 07:00:47 +00:00
2 changed files with 9 additions and 1 deletions
Showing only changes of commit 994b792d97 - Show all commits

View File

@ -1,6 +1,6 @@
# Build a small image # Build a small image
FROM --platform=linux/amd64 alpine:3 FROM --platform=linux/amd64 alpine:3
RUN apk add --no-cache su-exec restic postgresql-client RUN apk add --no-cache su-exec restic
COPY ./bin/formolcli /usr/local/bin COPY ./bin/formolcli /usr/local/bin
# Command to run # Command to run

8
Dockerfile.arm64 Normal file
View File

@ -0,0 +1,8 @@
# Build a small image
FROM --platform=linux/arm64 alpine:3
RUN apk add --no-cache su-exec restic postgresql-client
COPY ./bin/formolcli /usr/local/bin
# Command to run
ENTRYPOINT ["/usr/local/bin/formolcli"]
CMD ["--help"]