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 16, 2023
1 parent 020534e commit 7151f18
Show file tree
Hide file tree
Showing 2 changed files with 465 additions and 343 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
Loading

0 comments on commit 7151f18

Please sign in to comment.