ff-admin/Dockerfile
2024-11-27 17:06:39 +01:00

22 lines
No EOL
305 B
Docker

FROM node:18-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . /app
RUN npm run build-only
FROM nginx:stable-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;"]