keycloak-collective-portal/Dockerfile
decentral1se d22abd2bc5
All checks were successful
continuous-integration/drone/push Build is passing
The Big Refactor
Closes #3.
Closes #5.
Closes #7.
Closes #4.
Closes #2.
2021-06-13 12:20:16 +02:00

22 lines
657 B
Docker

FROM python:3.9 as builder
COPY . /project
WORKDIR /project
RUN pip install poetry
RUN poetry export --without-hashes -o requirements.txt -f requirements.txt
RUN poetry build --format=wheel
RUN cp dist/* /tmp
RUN pip wheel --no-cache-dir --disable-pip-version-check -r requirements.txt -w /tmp
FROM python:3.9-slim
COPY --from=builder /tmp /tmp
RUN pip install --no-cache-dir --disable-pip-version-check --no-index --no-deps /tmp/*.whl
COPY . /srv/project
WORKDIR /srv/project
RUN apt update && apt install -yq curl
CMD ["uvicorn", "--forwarded-allow-ips='*'", "--proxy-headers", "--host", "0.0.0.0", "keycloak_collective_portal.main:app"]
EXPOSE 8000