FROM registry.yandex.net/toolbox/nodejs:10.13.0-xenial

COPY configs /app/configs
COPY controllers /app/controllers
COPY js /app/js
COPY node_modules /app/node_modules
COPY app.js /app/
COPY index.js /app/
COPY package.json /app/
COPY router.js /app/

WORKDIR app

ARG APP_VERSION

CMD npm start
