Added dockerfile to build assets via Gulp; updated docker scripts

This commit is contained in:
2025-07-23 23:24:49 -04:00
parent 31b8404be1
commit ecb696372d
6 changed files with 23 additions and 3 deletions

13
Dockerfile.gulp Normal file
View File

@ -0,0 +1,13 @@
# Node.js runtime
FROM node:24
WORKDIR /usr/src/game-data/
COPY package.* /usr/src/game-data/
RUN npm install
VOLUME /usr/src/game-data/node_modules/
# Run the app
CMD [ "npm", "run", "gulp" ]