|
1 |
| -FROM python:3.12-slim |
| 1 | +ARG PYTHON_BASE=3.12-slim |
| 2 | + |
| 3 | +FROM python:${PYTHON_BASE} AS builder |
| 4 | + |
| 5 | +# disable update check since we're "static" in an image |
| 6 | +ENV PDM_CHECK_UPDATE=false |
| 7 | +# install PDM |
| 8 | +RUN pip install -U pdm |
| 9 | + |
| 10 | +WORKDIR /project |
| 11 | + |
| 12 | +RUN apt-get update -y \ |
| 13 | + && apt-get install --no-install-recommends --no-install-suggests -y git \ |
| 14 | + && rm -rf /var/lib/apt/lists/* |
| 15 | + |
| 16 | +RUN --mount=type=cache,target=/project/.venv/,sharing=locked \ |
| 17 | + --mount=type=bind,source=pyproject.toml,target=/project/pyproject.toml,readwrite \ |
| 18 | + --mount=type=bind,source=pdm.lock,target=/project/pdm.lock,readwrite \ |
| 19 | + pdm install --check --prod --no-editable && \ |
| 20 | + cp -R /project/.venv /project/.ready-venv |
| 21 | + |
| 22 | +FROM python:${PYTHON_BASE} |
2 | 23 |
|
3 | 24 | LABEL org.opencontainers.image.source=https://github.com/PythonistaGuild/Pythonista-Bot
|
4 | 25 | LABEL org.opencontainers.image.description="Pythonista Guild's Discord Bot"
|
5 | 26 | LABEL org.opencontainers.image.licenses=MIT
|
6 | 27 |
|
7 |
| -ENV PYTHONUNBUFFERED=1 \ |
8 |
| - # prevents python creating .pyc files |
9 |
| - PYTHONDONTWRITEBYTECODE=1 \ |
10 |
| - \ |
11 |
| - # pip |
12 |
| - PIP_NO_CACHE_DIR=off \ |
13 |
| - PIP_DISABLE_PIP_VERSION_CHECK=on \ |
14 |
| - PIP_DEFAULT_TIMEOUT=100 \ |
15 |
| - \ |
16 |
| - # poetry |
17 |
| - # https://python-poetry.org/docs/configuration/#using-environment-variables |
18 |
| - # make poetry install to this location |
19 |
| - POETRY_HOME="/opt/poetry" \ |
20 |
| - # make poetry create the virtual environment in the project's root |
21 |
| - # it gets named `.venv` |
22 |
| - POETRY_VIRTUALENVS_IN_PROJECT=true \ |
23 |
| - # do not ask any interactive question |
24 |
| - POETRY_NO_INTERACTION=1 \ |
25 |
| - \ |
26 |
| - # paths |
27 |
| - # this is where our requirements + virtual environment will live |
28 |
| - PYSETUP_PATH="/opt/pysetup" \ |
29 |
| - VENV_PATH="/opt/pysetup/.venv" |
30 |
| - |
31 |
| -ENV PATH="$POETRY_HOME/bin:$VENV_PATH/bin:$PATH" |
32 |
| - |
33 |
| -RUN apt-get update \ |
34 |
| - && apt-get install --no-install-recommends -y \ |
35 |
| - git \ |
36 |
| - # deps for installing poetry |
37 |
| - curl \ |
38 |
| - # deps for building python deps |
39 |
| - build-essential \ |
40 |
| - libcurl4-gnutls-dev \ |
41 |
| - gnutls-dev \ |
42 |
| - libmagic-dev |
43 |
| - |
44 |
| -RUN curl -sSL https://install.python-poetry.org | python - |
45 |
| - |
46 |
| -# copy project requirement files here to ensure they will be cached. |
| 28 | +USER 1000:1000 |
| 29 | + |
47 | 30 | WORKDIR /app
|
48 |
| -COPY poetry.lock pyproject.toml ./ |
49 | 31 |
|
50 |
| -# install runtime deps - uses $POETRY_VIRTUALENVS_IN_PROJECT internally |
51 |
| -RUN poetry install --only=main |
| 32 | +COPY --from=builder --chown=1000:1000 /project/.ready-venv/ /app/.venv |
| 33 | +ENV PATH="/app/.venv/bin:$PATH" |
52 | 34 |
|
53 | 35 | COPY . /app/
|
54 |
| -ENTRYPOINT ["poetry", "run", "python", "-O", "launcher.py" ] |
| 36 | +ENTRYPOINT [ "python", "-O", "launcher.py" ] |
0 commit comments