6 lines
66 B
Docker
6 lines
66 B
Docker
|
FROM node:lts-slim
|
||
|
WORKDIR /data
|
||
|
COPY . .
|
||
|
RUN npm install --prod
|
||
|
|