mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
11 lines
No EOL
147 B
Docker
11 lines
No EOL
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" ] |