Skip to content

Commit 01b39d1

Browse files
committed
Formatting
1 parent c53a355 commit 01b39d1

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

build/production/Dockerfile

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
FROM node:24-bookworm-slim as static-builder
1+
FROM node:24-bookworm-slim AS static-builder
22

33
WORKDIR /src
44
COPY . ./
55
RUN 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

1315
ARG APP_HOME=/app
1416
ARG POETRY_VERSION="2.1"
@@ -31,7 +33,9 @@ COPY poetry.lock pyproject.toml ./
3133
RUN 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

3640
ARG APP_HOME=/app
3741

0 commit comments

Comments
 (0)