Skip to content
Merged
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:24-alpine AS builder
FROM node:26-alpine AS builder

COPY ./ ./build
WORKDIR ./build

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / docker-build

Relative workdir without an absolute workdir declared within the build can have unexpected results if the base image changes

WorkdirRelativePath: Relative workdir "./build" can have unexpected results if the base image changes More info: https://docs.docker.com/go/dockerfile/rule/workdir-relative-path/
RUN npm ci && \
npm run build && \
npm pack

FROM node:24-alpine
FROM node:26-alpine

COPY --from=builder ./build/steadybit-*.tgz steadybit.tgz

Expand Down
Loading