Added Dockerfiles and scripts to run the dev build of Colossus through Docker
This commit is contained in:
13
Dockerfile.grunt
Normal file
13
Dockerfile.grunt
Normal file
@ -0,0 +1,13 @@
|
||||
# Node.js runtime
|
||||
FROM node:20
|
||||
|
||||
WORKDIR /usr/src/colossus/
|
||||
|
||||
COPY package.* /usr/src/colossus/
|
||||
|
||||
RUN npm install
|
||||
|
||||
VOLUME /usr/src/colossus/node_modules/
|
||||
|
||||
# Run the app
|
||||
CMD [ "npm", "run", "grunt" ]
|
Reference in New Issue
Block a user