ff-admin/Dockerfile

22 lines
296 B
Text
Raw Normal View History

2024-10-29 13:40:30 +00:00
FROM node:18-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . /app
RUN npm run build
FROM nginx:18-alpine as prod
WORKDIR /app
COPY --from=build /app/dist /usr/share/nginx/html
COPY ./nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]