Skip to content

Instantly share code, notes, and snippets.

@fusetim
Created November 1, 2020 17:16
Show Gist options
  • Save fusetim/ba316659467e3cb6884d9f993223ca5e to your computer and use it in GitHub Desktop.
Save fusetim/ba316659467e3cb6884d9f993223ca5e to your computer and use it in GitHub Desktop.
Dockerfile for PronoteAPI
FROM node:buster-slim
# Setup working dir
WORKDIR /usr/src/app
# Install deps
COPY package* ./
RUN npm install -d
# Copy app
COPY . .
# Expose and run
EXPOSE 21727
CMD ["bin/server.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment