mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2025-02-23 22:49:43 +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" ]
|