Skip to content

Commit

Permalink
build(deps): upgrade to debian bullseye node-lts
Browse files Browse the repository at this point in the history
some package in package.json requires a binary version of git for some
reason and was causing `yarn upgrade` to fail. should investigate
further...

```
root@24de4b0e2c6e:/code# yarn upgrade
yarn upgrade v1.22.19
[1/4] Resolving packages...
error Couldn't find the binary git
```
  • Loading branch information
alee committed Nov 21, 2023
1 parent 020534e commit 5e1db80
Show file tree
Hide file tree
Showing 3 changed files with 467 additions and 347 deletions.
7 changes: 5 additions & 2 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
FROM node:lts-bullseye-slim
FROM node:lts-bookworm-slim

RUN apt-get update \
&& apt-get install -y nasm libjpeg-turbo-progs vim \
&& apt-get install -y libjpeg-turbo-progs \
git \
nasm \
vim \
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

WORKDIR /code
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.3.0",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.34.0",
"eslint": "^8.54.0",
"eslint-plugin-vue": "^9.9.0",
"jsdom": "^21.1.0",
"npm-run-all": "^4.1.5",
Expand Down
Loading

0 comments on commit 5e1db80

Please sign in to comment.