mirror of
https://github.com/bszczuka/steel-training.git
synced 2025-12-21 13:23:02 +01:00
9 lines
221 B
Docker
9 lines
221 B
Docker
FROM python:3.10-alpine
|
|
COPY ./requirements.txt /app/requirements.txt
|
|
WORKDIR /app
|
|
RUN apk add pango libffi fontconfig ttf-freefont
|
|
RUN pip install -r requirements.txt
|
|
COPY . /app
|
|
ENTRYPOINT [ "python" ]
|
|
CMD [ "app.py" ]
|