# Specify a base image
FROM node:14-alpine

# Install some depenendencies
RUN npm install

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