FROM node:12-alpine WORKDIR /app ENV CLOUD=1 # copy files and install dependencies COPY . ./ RUN yarn EXPOSE 4001 CMD ["yarn", "run:docker"]