fix: specify full image paths for Node.js and Nginx in Containerfile
All checks were successful
Deploy / deploy (push) Successful in 44s
All checks were successful
Deploy / deploy (push) Successful in 44s
This commit is contained in:
parent
9006dae333
commit
3152e8f72b
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue