diff --git a/Dockerfile b/Dockerfile index dc018088..4b5d0570 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ -FROM node:16-alpine3.16 +FROM node:16-buster-slim # Create App directory in Container WORKDIR /usr/src/app # Update -RUN apk update +RUN apt update +RUN apt upgrade -y # Install App dependencies COPY package*.json ./ @@ -14,4 +15,4 @@ RUN npm install COPY . . # Run App -CMD ["npm", "start"] \ No newline at end of file +CMD ["npm", "start"]