File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 1- FROM node:24-bookworm-slim as static-builder
1+ FROM node:24-bookworm-slim AS static-builder
22
33WORKDIR /src
44COPY . ./
55RUN yarn install && \
66 yarn build-prod
77
8- # define an alias for the specific python version used in this file.
9- FROM python:3.11-slim-bookworm as python
108
11- FROM python as python-build-stage
9+
10+ # Define an alias for the specific python version used in this file.
11+ FROM python:3.11-slim-bookworm AS python
12+
13+ FROM python AS python-build-stage
1214
1315ARG APP_HOME=/app
1416ARG POETRY_VERSION="2.1"
@@ -31,7 +33,9 @@ COPY poetry.lock pyproject.toml ./
3133RUN poetry install --without dev && \
3234 rm -rf $POETRY_CACHE_DIR
3335
34- FROM python as python-run-stage
36+
37+
38+ FROM python AS python-run-stage
3539
3640ARG APP_HOME=/app
3741
You can’t perform that action at this time.
0 commit comments