updated
This commit is contained in:
parent
bb6db64165
commit
64c4ee8f63
10
Dockerfile
10
Dockerfile
|
@ -3,15 +3,15 @@ FROM node:18-alpine
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY package.json .
|
COPY package.json .
|
||||||
|
|
||||||
RUN npm install
|
RUN npm install
|
||||||
RUN npm install -g serve
|
|
||||||
|
RUN npm i -g serve
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN npm run build
|
|
||||||
|
|
||||||
COPY --from=build /app/dist ./dist
|
RUN npm run build
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
||||||
# Serve the static files after building
|
CMD [ "serve", "-s", "dist" ]
|
||||||
CMD ["serve", "-s", "dist", "-l", "3000"]
|
|
Loading…
Reference in New Issue