LeireTedCas commited on
Commit
5ed19b3
1 Parent(s): 763e0f0

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # syntax=docker/dockerfile:1
2
+
3
+ FROM python:3.8
4
+
5
+ RUN apt-get update && apt-get install -y portaudio19-dev
6
+
7
+ WORKDIR /app
8
+
9
+ COPY requirements.txt requirements.txt
10
+ RUN pip3 install -r requirements.txt
11
+
12
+ COPY . .
13
+
14
+ EXPOSE 5000
15
+ CMD [ "python", "app.py"]