mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
fix Dockerfile
This commit is contained in:
parent
731c0f61df
commit
c892f037db
1 changed files with 5 additions and 5 deletions
10
Dockerfile
10
Dockerfile
|
|
@ -1,10 +1,10 @@
|
|||
FROM nginx:1.20.1-alpine
|
||||
|
||||
COPY helpers/dependencies.sh /tmp/dependencies.sh && \
|
||||
apk add --no-cache bash && \
|
||||
chmod +x /tmp/dependencies.sh && \
|
||||
/tmp/dependencies.sh && \
|
||||
rm -f /tmp/dependencies.sh
|
||||
COPY helpers/dependencies.sh /tmp/dependencies.sh
|
||||
RUN apk add --no-cache bash && \
|
||||
chmod +x /tmp/dependencies.sh && \
|
||||
/tmp/dependencies.sh && \
|
||||
rm -f /tmp/dependencies.sh
|
||||
|
||||
RUN apk add --no-cache apk add certbot bash libmaxminddb libgcc lua yajl libstdc++ openssl py3-pip && \
|
||||
pip3 install jinja2
|
||||
|
|
|
|||
Loading…
Reference in a new issue