# specify the node base image with your desired version node:<version>
FROM node:alpine
# replace this with your application's default port
EXPOSE 3333 9229

WORKDIR /usr/src/app

# VOLUME [ "/usr/src/app" ]

# COPY . .


# COPY package*.json ./

# RUN npm install

