diff --git a/Dockerfile b/Dockerfile index 80d76e2..e4160ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ -FROM node:18-slim +FROM node:20-alpine + WORKDIR /app COPY package*.json ./ RUN npm install COPY . . + EXPOSE 3000 CMD ["npm", "start"]