File size: 281 Bytes
4a77268 3171fa3 ab68865 fd9ae66 50733bc ea2dbb3 ab68865 ea2dbb3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM python:3.10.13
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN useradd -m -u 1000 user
USER user
COPY --chown=user ./app /code/app
CMD ["fastapi", "run", "app/main.app", "--port", "80"]
|