This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/Dockerfile

33 lines
846 B
Docker
Raw Normal View History

2020-01-19 20:03:01 +00:00
FROM python:3.8-slim-buster as locker
COPY ./Pipfile /app/
COPY ./Pipfile.lock /app/
WORKDIR /app/
RUN pip install pipenv && \
pipenv lock -r > requirements.txt && \
pipenv lock -rd > requirements-dev.txt
2020-01-19 20:03:01 +00:00
FROM python:3.8-slim-buster
WORKDIR /
COPY --from=locker /app/requirements.txt /
COPY --from=locker /app/requirements-dev.txt /
RUN apt-get update && \
2020-09-02 22:04:12 +00:00
apt-get install -y --no-install-recommends postgresql-client-11 build-essential && \
2020-09-27 19:07:29 +00:00
apt-get clean && \
pip install -r /requirements.txt --no-cache-dir && \
2020-09-02 22:04:12 +00:00
apt-get remove --purge -y build-essential && \
2020-09-27 19:07:29 +00:00
apt-get autoremove --purge -y && \
adduser --system --no-create-home --uid 1000 --group --home /passbook passbook
COPY ./passbook/ /passbook
COPY ./manage.py /
COPY ./lifecycle/ /lifecycle
USER passbook
ENTRYPOINT [ "/lifecycle/bootstrap.sh" ]