Skip to content
Closed
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
4 changes: 2 additions & 2 deletions packages/slackbot/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build Stage
FROM node:21.6.0-bookworm as build
FROM node:23.2.0-bookworm as build

WORKDIR /opt/iex
COPY . /opt/iex
Expand All @@ -15,7 +15,7 @@ RUN npm run build --workspace=@iex/slackbot && \
RUN find . -name ".npmrc" -type f -delete

# Production Stage
FROM node:21.6.0-alpine
FROM node:23.2.0-alpine

WORKDIR /opt/iex
COPY --from=build /opt/iex .
Expand Down