restic-scheduler/Dockerfile
Ian Fijolek cc3b630359
All checks were successful
continuous-integration/drone/push Build is passing
Add c headers for mariadb auth
2022-04-15 10:29:45 -07:00

10 lines
254 B
Docker

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