restic-scheduler/Dockerfile
Ian Fijolek 2b8b450861
All checks were successful
continuous-integration/drone/push Build is passing
Add bash, mysql, and sqlite commands for scripts
2022-04-13 15:39:52 -07:00

10 lines
214 B
Docker

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