From f8abd9110d383ad9a362977c5ec7e323fb1415d2 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Wed, 4 Jan 2023 23:51:43 +1100 Subject: [PATCH] Switched to a slim docker distro --- Dockerfile | 2 +- configure-script.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b3fbc07..84d2f95 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18 +FROM node:18-bullseye-slim WORKDIR "/app" COPY package*.json ./ RUN npm install --production diff --git a/configure-script.js b/configure-script.js index ee4d136..e64d5f4 100644 --- a/configure-script.js +++ b/configure-script.js @@ -133,7 +133,7 @@ networks: `; const dockerfile = ` -FROM node:18 +FROM node:18-bullseye-slim WORKDIR "/app" COPY package*.json ./ RUN npm install --production