first commit! 🎉
This commit is contained in:
commit
c927d9490e
10 changed files with 1229 additions and 0 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal file
|
@ -0,0 +1,15 @@
|
|||
FROM nginx:stable-alpine3.17
|
||||
|
||||
# set working directory
|
||||
WORKDIR /usr/share/nginx/arimelody/
|
||||
|
||||
# copy nginx config
|
||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||
|
||||
# copy static files
|
||||
COPY public /usr/share/nginx/arimelody
|
||||
|
||||
EXPOSE 443
|
||||
|
||||
# start nginx in the foreground so logs appear in docker
|
||||
CMD ["nginx", "-g", "daemon off;"];
|
Reference in a new issue