Skip to content
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
4 changes: 2 additions & 2 deletions containers/text0wnz/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# text0wnz with server-side file storage
# Custom server implementation with file management API

FROM node:22-alpine AS base
FROM node:24-alpine AS base

WORKDIR /app

Expand Down Expand Up @@ -40,7 +40,7 @@ RUN cp storage-adapter.js ./dist/ && \
find ./dist -name "index.html" -type f -exec sed -i 's|</head>|<script src="/storage-adapter.js"></script></head>|' {} \;

# Production stage
FROM node:22-alpine
FROM node:24-alpine

WORKDIR /app

Expand Down
Loading