Update dockerfile example port (#23448)

## Description

Mismatch between exposed port and port used by command.

## Reviews


<!-- List applicable reviews (optionally @tag reviewers) -->

- [x] Technical review
- [x] Editorial review
- [ ] Product review
This commit is contained in:
Antonio Carvalho
2025-09-24 12:21:20 +01:00
committed by GitHub
parent 147af89ce1
commit 36d02515dd

View File

@@ -31,7 +31,7 @@ RUN pip install --no-cache-dir -r requirements.txt
# Copy in the source code
COPY src ./src
EXPOSE 5000
EXPOSE 8080
# Setup an app user so the container doesn't run as the root user
RUN useradd app