From e8a9a7968746ef725631086950c8ca013f4a71a9 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Wed, 4 Jan 2023 23:51:49 +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 dbd43f8..ef5e952 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 59eaef6..842916e 100644 --- a/configure-script.js +++ b/configure-script.js @@ -110,7 +110,7 @@ networks: `; const dockerfile = ` -FROM node:18 +FROM node:18-bullseye-slim WORKDIR "/app" COPY package*.json ./ RUN npm install --production