Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Troubleshooting node version as possible source of key error: 
similar to: 
```
octokit/auth-app.js#465
```

Signed-off-by: Sean P. Goggins <[email protected]>
  • Loading branch information
sgoggins authored Jan 24, 2024
1 parent 91a1d96 commit 848b363
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:16
FROM node:19
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 2020
CMD [ "npm", "start" ]
CMD [ "npm", "start" ]

0 comments on commit 848b363

Please sign in to comment.