Added dockerfile to build assets via Gulp; updated docker scripts
This commit is contained in:
13
Dockerfile.gulp
Normal file
13
Dockerfile.gulp
Normal 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" ]
|
Reference in New Issue
Block a user