anyway/backend/Dockerfile
Remy Moll 4e07c10969
Some checks failed
Run testing on the backend code / Build (pull_request) Has been cancelled
Run linting on the backend code / Build (pull_request) Has been cancelled
Build and deploy the backend to staging / Deploy to staging (pull_request) Has been cancelled
Build and deploy the backend to staging / Build and push image (pull_request) Has been cancelled
actually use fastapi lifetime manager to setup logging
2024-12-29 14:45:41 +01:00

20 lines
428 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY Pipfile Pipfile.lock .
RUN pip install pipenv
RUN pipenv install --deploy --system
COPY src src
EXPOSE 8000
# Set environment variables used by the deployment. These can be overridden by the user using this image.
ENV NUM_WORKERS=1
ENV OSM_CACHE_DIR=/cache
ENV MEMCACHED_HOST_PATH=none
ENV LOKI_URL=none
CMD ["fastapi", "src/main.py", "--port", "8000", "--workers", "$NUM_WORKERS"]