Skip to content

Commit 36d0251

Browse files
authored
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
1 parent 147af89 commit 36d0251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/get-started/docker-concepts/building-images/writing-a-dockerfile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN pip install --no-cache-dir -r requirements.txt
3131

3232
# Copy in the source code
3333
COPY src ./src
34-
EXPOSE 5000
34+
EXPOSE 8080
3535

3636
# Setup an app user so the container doesn't run as the root user
3737
RUN useradd app

0 commit comments

Comments
 (0)