bunkerweb/tests/core/cors/Dockerfile.init
2023-09-29 18:11:48 +01:00

10 lines
223 B
Text

FROM alpine:3.18@sha256:48d9183eb12a05c99bcc0bf44a003607b8e941e1d4f41f9ad12bdcc4b5672f86
WORKDIR /opt/init
COPY entrypoint.sh .
RUN apk add --no-cache bash && \
chmod +x entrypoint.sh
ENTRYPOINT [ "./entrypoint.sh" ]