frequi_origin/Dockerfile

23 lines
440 B
Docker
Raw Normal View History

FROM node:22.8.0-alpine as ui-builder
2020-06-04 09:57:37 +00:00
2024-05-24 04:57:36 +00:00
RUN mkdir /app \
&& corepack enable
2020-06-04 09:57:37 +00:00
WORKDIR /app
2024-05-24 04:57:36 +00:00
COPY package.json pnpm-lock.yaml /app/
2020-06-04 09:57:37 +00:00
2024-05-24 04:57:36 +00:00
RUN apk add --update --no-cache g++ make git \
&& pnpm install --frozen-lockfile \
2024-01-06 08:20:47 +00:00
&& apk del g++ make
2020-06-04 09:57:37 +00:00
COPY . /app
2021-10-27 18:08:27 +00:00
2024-05-24 04:57:36 +00:00
RUN pnpm run build
2020-06-04 09:57:37 +00:00
FROM nginx:1.27.0-alpine
COPY --from=ui-builder /app/dist /etc/nginx/html
COPY --from=ui-builder /app/nginx.conf /etc/nginx/nginx.conf
2020-06-04 09:57:37 +00:00
EXPOSE 80
CMD ["nginx"]