@@ -79,20 +79,20 @@ COPY --chown=nonroot:nonroot src/alembic.ini .
79
79
FROM base_app AS http_app
80
80
COPY --from=http_builder /venv /venv
81
81
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
83
83
CMD ["opentelemetry-instrument" , "python" , "-m" , "http_app" ]
84
84
85
85
# Copy the socketio python package and requirements from relevant builder
86
86
FROM base_app AS socketio_app
87
87
COPY --from=socketio_builder /venv /venv
88
88
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
90
90
CMD ["opentelemetry-instrument" , "python" , "-m" , "socketio_app" ]
91
91
92
92
# Copy the dramatiq python package and requirements from relevant builder
93
93
FROM base_app AS dramatiq_app
94
94
COPY --from=dramatiq_builder /venv /venv
95
95
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
97
97
# TODO: Review processes/threads
98
98
CMD ["opentelemetry-instrument" , "dramatiq" , "-p" , "1" , "-t" , "1" , "dramatiq_worker" ]
0 commit comments