# Use small base image with nodejs 10
FROM node:14.15.5-alpine

# set current work dir
WORKDIR /app/

# install dependencies
RUN apk add git
RUN apk --virtual build-dependencies add python make g++

# copy sources
COPY . .

# Run app
CMD ["yarn"]