# Specify a base image
FROM alpine

# Install some depenendencies
RUN npm install

# Default command
CMD ["npm", "start"]