TrikozikGames commited on
Commit
ae1d4cc
·
verified ·
1 Parent(s): 01cffe8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -11
Dockerfile CHANGED
@@ -1,11 +1,3 @@
1
- FROM python:3.10-slim
2
-
3
- WORKDIR /code
4
-
5
- COPY ./requirements.txt /code/requirements.txt
6
-
7
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
-
9
- COPY . .
10
-
11
- CMD ["python", "app.py"]
 
1
+ FROM nginx:alpine
2
+ COPY index.html /usr/share/nginx/html/index.html
3
+ EXPOSE 80