bitnami-containers/bitnami/python/example/Dockerfile

23 lines
503 B
Docker

FROM bitnami/python:3 as builder
ENV PATH="/app/.venv/bin:${PATH}"
WORKDIR /app
RUN python -m venv .venv
COPY requirements.txt /app
RUN pip install -r requirements.txt
COPY . /app
RUN python manage.py migrate
# The production image is constructed with a smaller, production grade
# base image, and your code built in the previous build stage.
FROM bitnami/python:3-prod
ENV PATH="/app/.venv/bin:${PATH}"
WORKDIR /app
COPY --from=builder /app /app
EXPOSE 8000
CMD python manage.py runserver 0:8000