From 5f7367eae8280cab21b2dd61fdc0be160af30480 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 12:08:01 +0000 Subject: [PATCH] Bump node from 20.5.0-alpine to 21.1.0-alpine Bumps node from 20.5.0-alpine to 21.1.0-alpine. --- updated-dependencies: - dependency-name: node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f761074..1b3160e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # We stop at the end of this step in development, so it also includes the deploy command # We install jest, eslint and ts-node so we can run tests and lint. -FROM node:20.5.0-alpine AS development +FROM node:21.1.0-alpine AS development ENV TZ="America/Chicago" ENV NODE_ENV=development @@ -41,7 +41,7 @@ CMD npx tsc-watch --onSuccess "npx nodemon --config ./nodemon.json" # We run the build command which creates the production bundle # We run npm ci --only=production to ensure that only the production dependencies are installed -FROM node:20.5.0-alpine AS build +FROM node:21.1.0-alpine AS build ENV TZ="America/Chicago" ENV NODE_ENV=production @@ -71,7 +71,7 @@ RUN npm ci --omit:dev && npm cache clean --force # Then we ONLY copy over the /build folder with the js files # We already deployed before, so the only thing left to do is run the bot with PM2 -FROM node:20.5.0-alpine AS production +FROM node:21.1.0-alpine AS production ENV TZ="America/Chicago" ENV NODE_ENV=production