diff --git a/frontend/dockerfile b/frontend/dockerfile index ab0000d..72f8fd6 100644 --- a/frontend/dockerfile +++ b/frontend/dockerfile @@ -1,11 +1,11 @@ -FROM node:20-alpine AS build-stage +FROM node:20-alpine as build-stage WORKDIR /app COPY package*.json ./ RUN npm install --force COPY . . RUN npm run build -FROM node:20-alpine AS production-stage +FROM node:20-alpine as production-stage WORKDIR /app COPY --from=build-stage /app /app EXPOSE 3000