diff --git a/Dockerfile b/Dockerfile index 352ce3a..e6e3dc0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM astefanutti/scratch-node:latest +FROM node:18-alpine WORKDIR /app COPY . . -RUN npm install && npm run build +RUN npm install --production && npm run build EXPOSE 3000