This repository has been archived on 2025-12-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
qmi-cloud/docker-worker/Dockerfile
2020-02-10 12:11:38 +01:00

14 lines
225 B
Docker

FROM node:13.8-alpine
RUN apk --no-cache add yarn
WORKDIR /var/www/app
ADD ./package.json ./
ADD ./yarn.lock ./
RUN yarn install --production
ADD ./server ./server
CMD ["node", "-r", "esm", "server/workers/worker.js"]