9 lines
108 B
Text
9 lines
108 B
Text
|
|
FROM node:12-alpine
|
||
|
|
|
||
|
|
RUN apk update && \
|
||
|
|
apk add --no-cache bash
|
||
|
|
|
||
|
|
RUN npm install
|
||
|
|
|
||
|
|
WORKDIR /usr/src
|