Skip to content

Commit c1fa7ce

Browse files
committed
Fix ports
1 parent 8b64238 commit c1fa7ce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ FROM python:3-alpine
2525

2626
COPY --from=builder /app/storybook-static ./public
2727

28-
EXPOSE 8080
29-
CMD ["python", "-m", "http.server", "8080", "--directory", "public"]
28+
EXPOSE 3000
29+
CMD ["python", "-m", "http.server", "3000", "--directory", "public"]

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ services:
22
storybook:
33
build: .
44
ports:
5-
- "3000:3000"
5+
- "80:3000"

0 commit comments

Comments
 (0)