microblog.pub/Dockerfile

34 lines
1.2 KiB
Docker
Raw Permalink Normal View History

FROM python:3.11-slim as python-base
2022-07-18 20:44:55 +02:00
ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
POETRY_HOME="/opt/poetry" \
POETRY_VIRTUALENVS_IN_PROJECT=true \
POETRY_NO_INTERACTION=1 \
PYSETUP_PATH="/opt/venv" \
VENV_PATH="/opt/venv/.venv"
ENV PATH="$POETRY_HOME/bin:$VENV_PATH/bin:$PATH"
FROM python-base as builder-base
RUN apt-get update
2022-09-18 21:33:50 +02:00
RUN apt-get install -y --no-install-recommends curl build-essential gcc libffi-dev libssl-dev libxml2-dev libxslt1-dev zlib1g-dev libxslt-dev gcc libjpeg-dev zlib1g-dev libwebp-dev
2022-09-18 20:54:25 +02:00
# rustc is needed to compile Python packages
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"
2022-07-18 20:44:55 +02:00
RUN curl -sSL https://install.python-poetry.org | python3 -
WORKDIR $PYSETUP_PATH
COPY poetry.lock pyproject.toml ./
2022-09-18 20:54:25 +02:00
RUN poetry install --only main
2022-07-18 20:44:55 +02:00
FROM python-base as production
2022-09-18 20:54:25 +02:00
RUN apt-get update
2022-09-18 21:33:50 +02:00
RUN apt-get install -y --no-install-recommends libjpeg-dev libxslt1-dev libxml2-dev libxslt-dev
2022-07-18 20:44:55 +02:00
RUN groupadd --gid 1000 microblogpub \
&& useradd --uid 1000 --gid microblogpub --shell /bin/bash microblogpub
COPY --from=builder-base $PYSETUP_PATH $PYSETUP_PATH
COPY . /app/
RUN chown -R 1000:1000 /app
USER microblogpub
WORKDIR /app
EXPOSE 8000
2022-07-30 09:02:04 +02:00
CMD ["./misc/docker_start.sh"]