Initial project structure with some barebones layout, CSS and JS from game-data

This commit is contained in:
2025-08-29 02:44:43 -04:00
parent 4168afe585
commit aab5acafb4
33 changed files with 564 additions and 1 deletions

13
Dockerfile.gulp Normal file
View File

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