Skip to content

Commit a0ef4c0

Browse files
committed
chore: change server port from 8000 to 8005 in Dockerfile and server.rkt
1 parent 9b81d4d commit a0ef4c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ WORKDIR /app
66
COPY server.rkt .
77
COPY public ./public
88

9-
EXPOSE 8000
9+
EXPOSE 8005
1010

1111
CMD ["racket", "server.rkt"]

server.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
;; Serve ./public (with index.html as default)
1313
(define-runtime-path PUBLIC_DIR "public")
1414

15-
(define PORT 8000)
15+
(define PORT 8005)
1616

1717
;; Simple request handler that serves static files
1818
(define (my-handler req)

0 commit comments

Comments
 (0)