Arrcttacsrks commited on
Commit
97d46fb
·
verified ·
1 Parent(s): dd99dbb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -4
Dockerfile CHANGED
@@ -1,4 +1,7 @@
1
- FROM nginx:alpine
2
- COPY index.html /usr/share/nginx/html/index.html
3
- COPY style.css /usr/share/nginx/html/style.css
4
- EXPOSE 80
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ WORKDIR /app
4
+ COPY . /app
5
+
6
+ EXPOSE 7860
7
+ CMD ["python3", "-m", "http.server", "7860"]