diff --git a/Dockerfile b/Dockerfile index cf1c65a..d8cc42e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,15 +3,15 @@ FROM node:18-alpine WORKDIR /app COPY package.json . + RUN npm install -RUN npm install -g serve + +RUN npm i -g serve COPY . . -RUN npm run build -COPY --from=build /app/dist ./dist +RUN npm run build EXPOSE 3000 -# Serve the static files after building -CMD ["serve", "-s", "dist", "-l", "3000"] \ No newline at end of file +CMD [ "serve", "-s", "dist" ] \ No newline at end of file