Skip to content

Commit

Permalink
Created basic Dockerfile
Browse files Browse the repository at this point in the history
Updated dependencies
  • Loading branch information
jsladerman committed Apr 1, 2022
1 parent 09cbba1 commit 08c567d
Show file tree
Hide file tree
Showing 2 changed files with 4,649 additions and 1,339 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM node:17

WORKDIR /app/hyperjump/

COPY ./package*.json ./

RUN npm install
COPY . ./

EXPOSE 3000

ENV APP_ID=
ENV PRIVATE_KEY=
ENV WEBHOOK_SECRET=

ENTRYPOINT [ "npm", "start" ]
Loading

0 comments on commit 08c567d

Please sign in to comment.