Peeble commited on
Commit
8b94d80
·
verified ·
1 Parent(s): 4302516

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ubuntu:20.04
2
+ WORKDIR /app
3
+
4
+ # Install dependencies
5
+ RUN apt update && apt install -y wine64 python3 python3-pip
6
+
7
+ # Copy project files
8
+ COPY . /app
9
+ RUN pip install -r requirements.txt
10
+
11
+ CMD ["python3", "app.py"]