diff --git a/server/Dockerfile b/server/Dockerfile index 58f8ce8..fcec3ca 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,6 +1,9 @@ -FROM node:18 +FROM ubuntu:22.04 WORKDIR /app +RUN apt update +RUN apt install nodejs npm -y + COPY package*.json ./ RUN npm install