ci: sharp compatibility with bun
All checks were successful
Docker CI / release (push) Successful in 47s

This commit is contained in:
Nicola Zambello 2024-03-25 15:24:31 +02:00
parent 574168ad92
commit 8a0bd93384
Signed by: nzambello
GPG key ID: 56E4A92C2C1E50BA
4 changed files with 8 additions and 0 deletions

View file

@ -2,3 +2,4 @@ node_modules
docs
data
.gitea
build

View file

@ -1,6 +1,10 @@
FROM oven/bun:alpine
RUN apk add vips-dev
WORKDIR /app
COPY . .
RUN bun install --production --frozen-lockfile
CMD ["bun", "start"]
EXPOSE 8787

BIN
bun.lockb

Binary file not shown.

View file

@ -11,6 +11,9 @@
"devDependencies": {
"@types/bun": "latest"
},
"trustedDependencies": [
"sharp"
],
"peerDependencies": {
"typescript": "^5.0.0"
}