mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
11 lines
229 B
Docker
11 lines
229 B
Docker
FROM alpine:3.18@sha256:48d9183eb12a05c99bcc0bf44a003607b8e941e1d4f41f9ad12bdcc4b5672f86
|
|
|
|
RUN apk add --no-cache bash openssl
|
|
|
|
WORKDIR /opt/init
|
|
|
|
COPY entrypoint.sh .
|
|
|
|
RUN chmod +x entrypoint.sh
|
|
|
|
ENTRYPOINT [ "./entrypoint.sh" ]
|