22 lines
444 B
Docker
22 lines
444 B
Docker
FROM python:3.8-alpine
|
|
|
|
RUN adduser -S fabcal
|
|
|
|
RUN apk add --no-cache build-base libuv-dev libffi-dev && \
|
|
pip3 install poetry
|
|
|
|
USER fabcal
|
|
|
|
COPY poetry.lock pyproject.toml /app/
|
|
|
|
WORKDIR /app/
|
|
|
|
RUN pip install -U poetry && \
|
|
poetry install --no-dev
|
|
|
|
COPY main.py /app/
|
|
COPY static/ /app/static/
|
|
COPY templates/ /app/templates/
|
|
|
|
ENTRYPOINT ["poetry", "run", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "5000", "--use-colors"]
|