mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-08 07:21:02 -04:00
adding a dockerfile
This commit is contained in:
parent
a3b873fd96
commit
012b54d44f
1 changed files with 9 additions and 0 deletions
9
Dockerfile
Normal file
9
Dockerfile
Normal file
|
@ -0,0 +1,9 @@
|
|||
FROM node:dubnium-buster-slim
|
||||
RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY . /
|
||||
ENV NODE_OPTIONS="--max_old_space_size=2048"
|
||||
RUN npm install node-sass
|
||||
RUN npm install -g grunt-cli
|
||||
RUN npm i
|
||||
CMD grunt dev
|
Loading…
Add table
Add a link
Reference in a new issue