GabrielGD commited on
Commit
0385abb
·
verified ·
1 Parent(s): db4e707

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9-slim
2
+ RUN apt-get update && apt-get install -y \
3
+ libpango-1.0-0 \
4
+ libpangoft2-1.0-0 \
5
+ && rm -rf /var/lib/apt/lists/*
6
+ COPY requirements.txt .
7
+ RUN pip install -r requirements.txt
8
+ COPY . .
9
+ CMD ["python", "app.py"]