restic-scheduler/Dockerfile
Ian Fijolek ced262d52c
All checks were successful
continuous-integration/drone/push Build is passing
Install restic in main container, duh
2022-04-14 15:04:57 -07:00

10 lines
227 B
Docker

FROM alpine:3
RUN apk add --no-cache mysql-client~=10.6 sqlite~=3 bash~=5 restic~=0.12
ARG TARGETOS
ARG TARGETARCH
COPY ./dist/resticscheduler-$TARGETOS-$TARGETARCH /bin/resticscheduler
ENTRYPOINT [ "/bin/resticscheduler" ]