This file was useless

This commit is contained in:
Donavon McDowell 2023-08-22 16:49:19 -06:00
parent bb36976fff
commit e7bd13678b

View File

@ -1,19 +0,0 @@
# ---- Base Node ----
FROM node:14 AS base
WORKDIR /app
# ---- Dependencies ----
FROM base AS dependencies
COPY package*.json ./
RUN npm ci
COPY . .
# ---- Build ----
FROM dependencies AS build
RUN npm run build
# --- Release with Nginx ----
FROM nginx:1.16.0-alpine AS release
COPY --from=build /app/build /usr/share/nginx/html/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]