Skip to content

Commit 6ed15b8

Browse files
committed
Comments
1 parent ae8993f commit 6ed15b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,20 +79,20 @@ COPY --chown=nonroot:nonroot src/alembic.ini .
7979
FROM base_app AS http_app
8080
COPY --from=http_builder /venv /venv
8181
COPY --chown=nonroot:nonroot src/http_app ./http_app
82-
# Run CMD using array syntax, so it's uses `exec` and runs as PID1
82+
# Run CMD using array syntax, so it uses `exec` and runs as PID1
8383
CMD ["opentelemetry-instrument", "python", "-m", "http_app"]
8484

8585
# Copy the socketio python package and requirements from relevant builder
8686
FROM base_app AS socketio_app
8787
COPY --from=socketio_builder /venv /venv
8888
COPY --chown=nonroot:nonroot src/socketio_app ./socketio_app
89-
# Run CMD using array syntax, so it's uses `exec` and runs as PID1
89+
# Run CMD using array syntax, so it uses `exec` and runs as PID1
9090
CMD ["opentelemetry-instrument", "python", "-m", "socketio_app"]
9191

9292
# Copy the dramatiq python package and requirements from relevant builder
9393
FROM base_app AS dramatiq_app
9494
COPY --from=dramatiq_builder /venv /venv
9595
COPY --chown=nonroot:nonroot src/dramatiq_worker ./dramatiq_worker
96-
# Run CMD using array syntax, so it's uses `exec` and runs as PID1
96+
# Run CMD using array syntax, so it uses `exec` and runs as PID1
9797
# TODO: Review processes/threads
9898
CMD ["opentelemetry-instrument", "dramatiq", "-p", "1", "-t", "1", "dramatiq_worker"]

0 commit comments

Comments
 (0)