Ian Fijolek
2b8b450861
All checks were successful
continuous-integration/drone/push Build is passing
10 lines
214 B
Docker
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" ]
|