Update Dockerfile to use port 3000 (standardized deploy)
This commit is contained in:
parent
034ab72fb4
commit
f17f93df0c
1 changed files with 2 additions and 2 deletions
|
|
@ -9,5 +9,5 @@ FROM node:20-alpine
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN npm install -g serve
|
RUN npm install -g serve
|
||||||
COPY --from=build /app/dist ./dist
|
COPY --from=build /app/dist ./dist
|
||||||
EXPOSE 8080
|
EXPOSE 3000
|
||||||
CMD ["serve", "-s", "dist", "-l", "8080"]
|
CMD ["serve", "-s", "dist", "-l", "3000"]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue