From dfd2ef91c9bc9f1961dc5f8bb8f0d8c861d74425 Mon Sep 17 00:00:00 2001 From: Douglas Barone Date: Wed, 27 Apr 2022 12:14:12 -0400 Subject: [PATCH] Change Dockerfile to Ubuntu base --- server/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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