🗃️ modified: Dockerfile 🗃️

This commit is contained in:
Jason 2022-07-11 19:49:13 -04:00
parent a1ddc0028a
commit 902a16bdba
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

@ -1,13 +1,13 @@
FROM casjaysdevdocker/nginx:latest as build
ARG ARIANG_VERSION=1.2.4 \
DOMAIN=0.0.0.0:8080
DOMAIN=0.0.0.0:8080
RUN mkdir -p /bin/ /config/ /data/ && \
rm -Rf /bin/.gitkeep /config/.gitkeep /data/.gitkeep && \
apk -U update && \
apk add --no-cache \
apk add --no-cache \
aria2 \
unzip && \
rm -R /etc/nginx && \
@ -53,4 +53,4 @@ COPY --from=build /. /
HEALTHCHECK CMD [ "/usr/local/bin/entrypoint-aria2.sh", "healthcheck" ]
ENTRYPOINT [ "/usr/local/bin/entrypoint-aria2.sh" ]
CMD [ "exec" ]