first commit! 🎉

This commit is contained in:
ari melody 2023-10-02 06:30:54 +01:00
commit c927d9490e
Signed by: ari
GPG key ID: CF99829C92678188
10 changed files with 1229 additions and 0 deletions

15
Dockerfile Normal file
View 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;"];