edit
This commit is contained in:
parent
a5754b3399
commit
ac4fd8d006
|
@ -1,4 +1,4 @@
|
||||||
FROM node:20 AS build-stage
|
FROM node:18-alpine
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
@ -14,5 +14,4 @@ RUN npm run build
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
||||||
# Bind to all network interfaces, not just localhost
|
CMD [ "serve", "-s", "dist", "-l", "3000" ]
|
||||||
CMD [ "serve", "-s", "dist", "-l", "tcp://0.0.0.0:3000" ]
|
|
||||||
|
|
Loading…
Reference in New Issue