Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump node from 20.5.0-alpine to 21.1.0-alpine #42

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading