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

View File

@ -1,12 +1,12 @@
FROM node:20
FROM node:24
WORKDIR /app
WORKDIR /usr/src/leviathan
COPY package*.json ./
RUN npm install
VOLUME /app/node_modules
VOLUME /usr/src/leviathan/node_modules
COPY . ./