generated from Phil/vue3template
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
13 lines
No EOL
249 B
Docker
13 lines
No EOL
249 B
Docker
FROM node:23 AS builder
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN npm install
|
|
RUN npm run build
|
|
|
|
FROM nginx:stable-alpine-slim AS production
|
|
RUN rm -rf /usr/share/nginx/html
|
|
RUN mkdir -p /usr/share/nginx/html
|
|
|
|
COPY --from=builder /app/dist/ /usr/share/nginx/html/ |