14 lines
318 B
Plaintext
14 lines
318 B
Plaintext
FROM alpine:3.20.0
|
|
|
|
WORKDIR /app
|
|
|
|
COPY utilities /app/utilities/
|
|
COPY entrypoint.sh /app/docker-entrypoint.sh
|
|
|
|
RUN ["chmod", "+x", "/app/docker-entrypoint.sh"]
|
|
RUN ["chmod", "+x", "/app/utilities/DBFileSync.sh"]
|
|
RUN ["chmod", "+x", "/app/utilities/DBFileSync.jar"]
|
|
|
|
ENTRYPOINT ["/app/docker-entrypoint.sh"]
|
|
|
|
CMD ["sh"] |