Skip to content
This repository was archived by the owner on Nov 21, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM node:10

# Create directory
WORKDIR /usr/src/app

# Copy Package.json
COPY package*.json ./

RUN npm install

# Copy app source
COPY . .

# !! MAKE SURE THIS IS THE RIGHT PORT YOU WANT TO USE !!
EXPOSE 3000

CMD ["node", "index.js"]