removing https dependency
This commit is contained in:
parent
ec2f27b472
commit
d1443d89fd
3 changed files with 9 additions and 18 deletions
|
@ -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;"];
|
||||
|
|
Reference in a new issue