Remove unused Dockerfile

This commit is contained in:
Andrea Fazzi 2021-11-03 09:35:55 +01:00
parent 71fc1ef034
commit 67483b741a

View file

@ -1,12 +0,0 @@
FROM node AS build
WORKDIR /app
COPY package.json ./
COPY package-lock.json ./
RUN npm install
COPY . ./
RUN npm run build
FROM nginx:1.19-alpine
COPY --from=build /app/public /usr/share/nginx/html