2024-10-29 13:40:30 +00:00
|
|
|
FROM node:18-alpine AS build
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY package*.json ./
|
|
|
|
|
|
|
|
RUN npm install
|
|
|
|
|
|
|
|
COPY . /app
|
|
|
|
|
2024-11-27 16:06:39 +00:00
|
|
|
RUN npm run build-only
|
2024-10-29 13:40:30 +00:00
|
|
|
|
2024-11-27 16:06:39 +00:00
|
|
|
FROM nginx:stable-alpine AS prod
|
2024-10-29 13:40:30 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
|
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
|
|
|
|
|
|
|
EXPOSE 80
|
|
|
|
|
2025-01-06 14:04:47 +00:00
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
|
|
RUN apk add --no-cache dos2unix
|
|
|
|
RUN dos2unix /entrypoint.sh && chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|