8 lines
76 B
Docker
8 lines
76 B
Docker
FROM node:alpine
|
|
|
|
WORKDIR /usr/app
|
|
|
|
COPY . .
|
|
|
|
RUN npm install --unsafe-perm
|