18 lines
437 B
Docker
18 lines
437 B
Docker
FROM alpine:3.20.0
|
|
|
|
WORKDIR /app
|
|
|
|
COPY utilities /app/utilities/
|
|
COPY entrypoint.sh /app/docker-entrypoint.sh
|
|
COPY setenv_tmp /app/setenv_tmp
|
|
|
|
RUN apk add --no-cache bash
|
|
RUN ["chmod", "+x", "/app/docker-entrypoint.sh"]
|
|
RUN ["chmod", "+x", "/app/utilities/DBFileSync.sh"]
|
|
RUN ["chmod", "+x", "/app/utilities/DBFileSync.jar"]
|
|
RUN ["chmod", "+x", "/app/utilities/DBFileSyncTimer.txt"]
|
|
|
|
|
|
ENTRYPOINT ["/app/docker-entrypoint.sh"]
|
|
|
|
CMD ["sh"] |