mirror of
https://github.com/bszczuka/steel-training.git
synced 2025-12-21 13:23:02 +01:00
10 lines
233 B
Docker
10 lines
233 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
|
|
EXPOSE 5000
|
|
ENTRYPOINT [ "python" ]
|
|
CMD [ "app.py" ]
|