V13 main.js path compatibility + docker image enhancements.
Build foundry vtt docker image and push to registry / docker (push) Successful in 2m27s

Preparing environment for building different Foundry dockers using a build argument to choose which node base image is being applied. Not strictly required right now, but might be useful in the future.
This commit is contained in:
Crovaxon
2025-05-03 18:20:48 +02:00
parent 0c183ec076
commit 7cc2051528
3 changed files with 22 additions and 4 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
FROM node:20-alpine
ARG NODE_IMAGE_VERSION=20-alpine
FROM node:${NODE_IMAGE_VERSION}
LABEL maintainer="crovaxon"
WORKDIR /app