Skip to content

Commit 18ebcd6

Browse files
committed
chore(docker): linting and comment spacing
1 parent fd6ff15 commit 18ebcd6

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM python:3.13-alpine3.21 AS base
22
WORKDIR /opt/recipes
33

4-
#Print all logs without buffering: https://stackoverflow.com/a/59812588
4+
# Print all logs without buffering: https://stackoverflow.com/a/59812588
55
ENV PYTHONUNBUFFERED=1
66

7-
#Install all dependencies.
7+
# Install all dependencies.
88
RUN apk add --no-cache \
99
gettext \
1010
git \
@@ -21,7 +21,6 @@ FROM base AS deps
2121

2222
ENV DOCKER=true
2323

24-
2524
COPY --link requirements.txt ./
2625

2726
RUN <<EOF
@@ -68,7 +67,7 @@ RUN <<EOF
6867
EOF
6968

7069
FROM deps AS builder
71-
#Copy project and execute it.
70+
# Copy project and execute it.
7271
COPY --link . ./
7372
COPY --link --chmod=755 boot.sh ./
7473

@@ -89,7 +88,7 @@ EOF
8988
FROM base AS runner
9089
COPY --link --from=builder /opt/recipes/ ./
9190

92-
#This port will be used by gunicorn.
91+
# This port will be used by gunicorn.
9392
EXPOSE 8080
9493

9594
ENTRYPOINT ["/opt/recipes/boot.sh"]

0 commit comments

Comments
 (0)