Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Trying to use Node:19 instead of Node:16 to fix error similar to: 
```
octokit/auth-app.js#465
```

Signed-off-by: Sean P. Goggins <s@goggins.com>
  • Loading branch information
sgoggins authored Jan 24, 2024
1 parent 91a1d96 commit f3ce940
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 f3ce940

Please sign in to comment.