Skip to content

Instantly share code, notes, and snippets.

View edgargonzalez525's full-sized avatar

Edgar Gonzalez edgargonzalez525

View GitHub Profile
FROM node:12.15.0-alpine
# Create app directory
WORKDIR /usr/src/app
# Copy package files
COPY package*.json ./
# Install npm packages
RUN npm install