Created
November 1, 2020 17:16
-
-
Save fusetim/ba316659467e3cb6884d9f993223ca5e to your computer and use it in GitHub Desktop.
Dockerfile for PronoteAPI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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