Skip to content

Commit

Permalink
Fix up client bits
Browse files Browse the repository at this point in the history
  • Loading branch information
ipmb committed Feb 9, 2024
1 parent 537b888 commit 723af6e
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# STAGE 1: BUILD NODE
FROM node:18-alpine as build-node
FROM node:20-alpine as build-node

WORKDIR /home/node/app
COPY package-lock.json package.json ./
Expand Down
13 changes: 13 additions & 0 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "{{ project_name }}",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node -e \"console.log('Your client build/watch process goes here'); setInterval(() => {}, 99999999);\""
},
"author": "",
"license": "ISC",
"dependencies": {}
}

0 comments on commit 723af6e

Please sign in to comment.