Added docker container to run grunt; updated workdir paths in docker containers

This commit is contained in:
2025-06-30 11:49:28 -04:00
parent f80571ba78
commit 7170856587
6 changed files with 22 additions and 5 deletions

13
Dockerfile.grunt Normal file
View File

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