mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:40:18 +00:00
11 lines
164 B
Docker
11 lines
164 B
Docker
FROM node:13.14.0-alpine
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY / /usr/src/app/
|
|
|
|
RUN apk add --virtual .build-deps python make g++ gcc
|
|
|
|
RUN npm install
|
|
|
|
CMD [ "npm", "start" ] |