You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
415 B
17 lines
415 B
# Build stage
|
|
FROM node:22-alpine3.20 as build-stage
|
|
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
# Production stage
|
|
FROM nginx:alpine
|
|
RUN mkdir -p /etc/nginx/ssl
|
|
COPY --from=build-stage /app/dist /usr/share/nginx/html
|
|
COPY default.conf /etc/nginx/conf.d/default.conf
|
|
COPY nginx-selfsigned.crt nginx-selfsigned.key /etc/nginx/ssl/
|
|
EXPOSE 80 443
|
|
CMD ["nginx", "-g", "daemon off;"]
|
|
|