FROM node:8-alpine

# Set the working directory to /app
WORKDIR /app

RUN apk update && \
    apk upgrade && \
    apk add bash

# Copy the current directory contents into the container at /app
ADD . /app

RUN npm install

CMD [ "sleep", "50000" ]
