try this
This commit is contained in:
parent
9453919ec4
commit
3fca970100
|
@ -3,13 +3,11 @@ 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
|
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN npm run dev
|
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
||||||
# Serve the static files after building
|
CMD ["npm", "run", "dev"]
|
||||||
CMD ["serve", "-s", "dist", "-l", "3000"]
|
|
||||||
|
|
Loading…
Reference in New Issue