mirror of
https://github.com/scratchfoundation/scratch-analysis.git
synced 2024-11-24 16:48:13 -05:00
9 lines
152 B
Text
9 lines
152 B
Text
|
FROM node:16
|
||
|
|
||
|
RUN mkdir -p /var/app/current
|
||
|
WORKDIR /var/app/current
|
||
|
COPY . ./
|
||
|
RUN rm -rf ./node_modules
|
||
|
RUN npm install
|
||
|
RUN npm install -g nodemon tap
|