Skip to content
Draft
Show file tree
Hide file tree
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 debridge_node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.14.0 as builder
FROM node:22.15.1 as builder
RUN apt-get update && apt-get install build-essential

WORKDIR /build
Expand All @@ -15,7 +15,7 @@ COPY src /build/src
RUN mkdir stats
RUN npm run build

FROM node:22.14.0-alpine
FROM node:22.15.1-alpine
WORKDIR /app
COPY --from=builder /build/dist /app/dist
COPY --from=builder /build/node_modules /app/node_modules
Expand Down
Loading