Initial commit
This commit is contained in:
10
app/Dockerfile
Normal file
10
app/Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM python:3.11
|
||||
|
||||
RUN mkdir /app
|
||||
ADD . /app
|
||||
RUN pip install -r /app/requirements.txt
|
||||
RUN apt-get update && apt-get install -y fonts-dejavu
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
CMD [ "python", "/app/app.py" ]
|
||||
Reference in New Issue
Block a user