We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8da86a3 commit ea31828Copy full SHA for ea31828
Containerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.13-alpine as builder
+FROM python:3.13-alpine AS builder
2
3
RUN pip install poetry
4
@@ -15,7 +15,7 @@ RUN touch README.md
15
RUN poetry install --without dev --no-root && rm -rf $POETRY_CACHE_DIR
16
17
# The runtime image, used to just run the code provided its virtual environment
18
-FROM python:3.13-alpine as runtime
+FROM python:3.13-alpine AS runtime
19
20
ENV VIRTUAL_ENV=/app/.venv \
21
PATH="/app/.venv/bin:$PATH" \
0 commit comments