Skip to content

Commit 8ad2c17

Browse files
committed
fix: prevent error related to forward ref
1 parent c2f61a8 commit 8ad2c17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12-bookworm as build
1+
FROM python:3.12.3-bookworm as build
22
WORKDIR /app
33
RUN curl -sSL https://install.python-poetry.org | python -
44
ENV PATH="/root/.local/bin:${PATH}" \
@@ -9,7 +9,7 @@ ENV PATH="/root/.local/bin:${PATH}" \
99
COPY pyproject.toml poetry.lock ./
1010
RUN poetry install --without dev --no-root
1111

12-
FROM python:3.12-bookworm as base
12+
FROM python:3.12.3-bookworm as base
1313
WORKDIR /app
1414
RUN apt-get update && \
1515
apt-get install -y --no-install-recommends default-jre && \

0 commit comments

Comments
 (0)