@@ -79,20 +79,20 @@ COPY --chown=nonroot:nonroot src/alembic.ini .
7979FROM base_app AS http_app
8080COPY --from=http_builder /venv /venv
8181COPY --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
8383CMD ["opentelemetry-instrument" , "python" , "-m" , "http_app" ]
8484
8585# Copy the socketio python package and requirements from relevant builder
8686FROM base_app AS socketio_app
8787COPY --from=socketio_builder /venv /venv
8888COPY --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
9090CMD ["opentelemetry-instrument" , "python" , "-m" , "socketio_app" ]
9191
9292# Copy the dramatiq python package and requirements from relevant builder
9393FROM base_app AS dramatiq_app
9494COPY --from=dramatiq_builder /venv /venv
9595COPY --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
9898CMD ["opentelemetry-instrument" , "dramatiq" , "-p" , "1" , "-t" , "1" , "dramatiq_worker" ]
0 commit comments