mirror of
https://github.com/scratchfoundation/scratch-analysis.git
synced 2024-11-21 10:48:15 -05:00
8 lines
152 B
Docker
8 lines
152 B
Docker
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
|