10 lines
148 B
Text
10 lines
148 B
Text
|
FROM alpine
|
||
|
LABEL author="1Computer1"
|
||
|
|
||
|
RUN apk update
|
||
|
RUN apk add nodejs npm
|
||
|
RUN npm i lodash moment cheerio
|
||
|
|
||
|
COPY run.sh /var/run/
|
||
|
WORKDIR /var/ws
|