fix: specify full image paths for Node.js and Nginx in Containerfile
All checks were successful
Deploy / deploy (push) Successful in 44s

This commit is contained in:
Adrian Altner 2026-04-22 18:15:01 +02:00
parent 9006dae333
commit 3152e8f72b

View file

@ -1,4 +1,4 @@
FROM node:22-bookworm-slim AS build
FROM docker.io/library/node:22-bookworm-slim AS build
ARG WEBMENTION_TOKEN=""
ENV WEBMENTION_TOKEN=$WEBMENTION_TOKEN
@ -14,7 +14,7 @@ COPY . .
RUN npm run build
FROM nginx:alpine AS runtime
FROM docker.io/library/nginx:alpine AS runtime
COPY --from=build /app/dist /usr/share/nginx/html