SHIKARICHACHA commited on
Commit
6ff860f
·
verified ·
1 Parent(s): 755907c

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +16 -0
Dockerfile ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+
3
+ # Install fluidsynth
4
+ RUN apt-get update && \
5
+ apt-get install -y fluidsynth && \
6
+ apt-get clean
7
+
8
+ # Install Python dependencies
9
+ COPY requirements.txt .
10
+ RUN pip install -r requirements.txt
11
+
12
+ # Copy app files
13
+ COPY . /app
14
+ WORKDIR /app
15
+
16
+ CMD ["python", "app.py"]