bunkerized-nginx/tests/core/db/init/Dockerfile
2023-05-14 20:57:58 -04:00

11 lines
147 B
Docker

FROM alpine
RUN apk add --no-cache bash git
WORKDIR /opt/init
COPY entrypoint.sh .
RUN chmod +x entrypoint.sh
ENTRYPOINT [ "./entrypoint.sh" ]