File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
FROM python:3.13-alpine3.21 AS base
2
2
WORKDIR /opt/recipes
3
3
4
- # Print all logs without buffering: https://stackoverflow.com/a/59812588
4
+ # Print all logs without buffering: https://stackoverflow.com/a/59812588
5
5
ENV PYTHONUNBUFFERED=1
6
6
7
- # Install all dependencies.
7
+ # Install all dependencies.
8
8
RUN apk add --no-cache \
9
9
gettext \
10
10
git \
@@ -21,7 +21,6 @@ FROM base AS deps
21
21
22
22
ENV DOCKER=true
23
23
24
-
25
24
COPY --link requirements.txt ./
26
25
27
26
RUN <<EOF
@@ -68,7 +67,7 @@ RUN <<EOF
68
67
EOF
69
68
70
69
FROM deps AS builder
71
- # Copy project and execute it.
70
+ # Copy project and execute it.
72
71
COPY --link . ./
73
72
COPY --link --chmod=755 boot.sh ./
74
73
89
88
FROM base AS runner
90
89
COPY --link --from=builder /opt/recipes/ ./
91
90
92
- # This port will be used by gunicorn.
91
+ # This port will be used by gunicorn.
93
92
EXPOSE 8080
94
93
95
94
ENTRYPOINT ["/opt/recipes/boot.sh" ]
You can’t perform that action at this time.
0 commit comments