Change Dockerfile to Ubuntu base

This commit is contained in:
Douglas Barone 2022-04-27 12:14:12 -04:00
parent 89d0e0b253
commit dfd2ef91c9

View File

@ -1,6 +1,9 @@
FROM node:18 FROM ubuntu:22.04
WORKDIR /app WORKDIR /app
RUN apt update
RUN apt install nodejs npm -y
COPY package*.json ./ COPY package*.json ./
RUN npm install RUN npm install