17 lines
354 B
Docker
17 lines
354 B
Docker
FROM node:20-alpine AS builder
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
FROM node:20-alpine
|
|
RUN npm install -g serve
|
|
WORKDIR /app
|
|
COPY --from=builder /app/dist ./dist
|
|
COPY entrypoint.sh ./entrypoint.sh
|
|
RUN chmod +x ./entrypoint.sh
|
|
EXPOSE 5188
|
|
ENTRYPOINT ["./entrypoint.sh"]
|
|
CMD ["serve", "-s", "dist", "-l", "5188"]
|