kopaser commited on
Commit
b86b305
·
verified ·
1 Parent(s): 2c7e591

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+ COPY . /app
3
+ WORKDIR /app
4
+ CMD ["python", "app.py"]