25 lines
529 B
Docker
25 lines
529 B
Docker
FROM python:3.10
|
|
|
|
WORKDIR /app/
|
|
|
|
# Install Poetry
|
|
RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=/opt/poetry python && \
|
|
cd /usr/local/bin && \
|
|
ln -s /opt/poetry/bin/poetry && \
|
|
poetry config virtualenvs.create false
|
|
|
|
# Copy poetry.lock* in case it doesn't exist in the repo
|
|
COPY ./pyproject.toml ./poetry.lock* /app/
|
|
|
|
RUN poetry install --no-root
|
|
|
|
ENV PYTHONPATH=/app
|
|
|
|
COPY ./scripts /app/scripts
|
|
|
|
COPY ./alembic.ini /app/
|
|
|
|
COPY ./app /app/app
|
|
|
|
CMD ["fastapi", "run", "--workers", "4", "app/main.py"]
|