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

62 lines
1.5 KiB
Docker
Raw Normal View History

2020-11-11 09:38:37 +01:00
## Build venv
FROM python:3.11.1-bullseye AS venv
2020-11-11 09:38:37 +01:00
# https://python-poetry.org/docs/#installation
2022-09-28 17:55:33 +02:00
ENV POETRY_VERSION=1.1.15
2022-02-24 20:53:46 +01:00
RUN curl -sSL https://install.python-poetry.org | python3 -
2020-11-11 09:38:37 +01:00
ENV PATH /root/.local/bin:$PATH
2020-12-26 16:49:47 +01:00
ARG POETRY_OPTIONS
2020-11-11 09:38:37 +01:00
WORKDIR /app
2021-01-05 02:36:20 +01:00
2020-11-11 09:38:37 +01:00
COPY pyproject.toml poetry.lock ./
2020-12-26 16:49:47 +01:00
2020-11-11 09:38:37 +01:00
RUN python -m venv --copies /app/venv \
&& . /app/venv/bin/activate \
2022-10-19 22:30:21 +02:00
&& poetry install $POETRY_OPTIONS
2020-11-11 09:38:37 +01:00
2021-12-26 23:38:17 +01:00
ENV PATH /app/venv/bin:$PATH
COPY src ./src/
RUN python ./src/manage.py collectstatic --no-input
2020-11-11 09:38:37 +01:00
## Get git versions
FROM alpine/git AS git
2020-09-09 18:32:46 +02:00
ADD . /app
WORKDIR /app
RUN git rev-parse HEAD | tee /version
2020-08-17 08:23:00 +02:00
2020-11-11 09:38:37 +01:00
## Beginning of runtime image
FROM python:3.11.1-slim-bullseye as prod
2022-03-25 19:27:14 +01:00
ENV TZ "Europe/Paris"
RUN mkdir /db
2020-11-11 09:38:37 +01:00
COPY --from=venv /app/venv /app/venv/
ENV PATH /app/venv/bin:$PATH
2020-08-17 12:51:21 +02:00
2020-08-17 08:23:00 +02:00
WORKDIR /app
2021-12-19 21:41:20 +01:00
COPY LICENSE pyproject.toml ./
2020-08-17 08:23:00 +02:00
COPY docker ./docker/
2021-12-19 21:41:20 +01:00
COPY src ./src/
2020-09-09 18:32:46 +02:00
COPY --from=git /version /app/.version
2021-12-26 23:38:17 +01:00
COPY --from=venv /app/src/staticfiles /app/src/staticfiles/
2020-08-17 08:23:00 +02:00
ENV SECRET_KEY "changeme"
ENV DEBUG "false"
ENV DB_BASE_DIR "/db"
#ENV HOSTS="host1;host2"
#ENV ADMINS='Full Name,email@example.com'
#ENV MAILGUN_API_KEY='key-yourapikey'
#ENV MAILGUN_SENDER_DOMAIN='mailgun.example.com'
#ENV BLOG_BASE_URL='https://url-of-your-blog.example.com'
#ENV SHORTPIXEL_API_KEY='YOURAPIKEY'
#ENV SHORTPIXEL_RESIZE_WIDTH='750'
#ENV SHORTPIXEL_RESIZE_HEIGHT='10000'
#ENV GOATCOUNTER_DOMAIN='blog.goatcounter.example.com'
2020-08-17 08:23:00 +02:00
2020-11-11 09:38:37 +01:00
HEALTHCHECK --start-period=30s CMD python -c "import requests; requests.get('http://localhost:8000', timeout=2)"
2020-08-17 08:23:00 +02:00
2021-12-19 21:52:20 +01:00
WORKDIR /app/src
2020-08-17 08:23:00 +02:00
CMD ["/app/docker/run.sh"]