removing https dependency

This commit is contained in:
ari melody 2024-01-17 03:55:48 +00:00
parent ec2f27b472
commit d1443d89fd
Signed by: ari
GPG key ID: CF99829C92678188
3 changed files with 9 additions and 18 deletions

View file

@ -1,15 +1,15 @@
FROM nginx:stable-alpine3.17
# set working directory
WORKDIR /usr/share/nginx/arimelody/
WORKDIR /web/arimelody/
# copy nginx config
COPY nginx.conf /etc/nginx/conf.d/default.conf
# copy static files
COPY public /usr/share/nginx/arimelody
COPY public /web/arimelody
EXPOSE 443
EXPOSE 80
# start nginx in the foreground so logs appear in docker
CMD ["nginx", "-g", "daemon off;"];