2024-01-11 01:13:21 +00:00
|
|
|
FROM node:bookworm AS build
|
|
|
|
RUN node -v
|
2024-01-11 01:08:37 +00:00
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
2024-01-11 01:13:21 +00:00
|
|
|
FROM nginx
|
|
|
|
COPY --from=build /app/dist /usr/share/nginx/html/
|
2024-01-10 23:15:38 +00:00
|
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
2024-01-11 00:42:47 +00:00
|
|
|
COPY _nginx/nginx.conf /etc/nginx/conf.d
|