Djeeberjr
818e58f179
All checks were successful
continuous-integration/drone/push Build is passing
too lazy to list things
14 lines
211 B
Docker
14 lines
211 B
Docker
FROM restic/restic
|
|
|
|
RUN apk add --no-cache mysql-client rclone bash fuse postgresql-client
|
|
|
|
RUN mkdir /app && mkdir /config
|
|
|
|
COPY src/ /app/
|
|
|
|
WORKDIR /config
|
|
|
|
VOLUME /config
|
|
|
|
ENTRYPOINT [ "/app/entrypoint.sh" ]
|