Auto deploy

This commit is contained in:
2022-02-05 14:45:38 +03:00
parent 8c48dd2e75
commit c3afa3b834
6 changed files with 53 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM nginx:1.21.6-alpine
COPY ./app /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]