This commit is contained in:
Manav Rathi 2025-01-23 14:35:28 +05:30
parent 9451124c38
commit c4c8447f54
No known key found for this signature in database
3 changed files with 9 additions and 1 deletions

2
desktop/scripts/vips/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
1.heic
1.jpeg

View File

@ -1 +1,7 @@
FROM ubuntu:24.04
RUN set -e && \
apt-get update -y && \
apt-get install -y libvips-tools
ENTRYPOINT ["vips"]

View File

@ -2,5 +2,5 @@ Experimenting with libvips.
```sh
docker build -t vips-test .
docker run -it --rm vips-test /bin/bash
docker run -it --rm -v $(pwd):/w vips-test copy /w/1.heic /w/1.jpeg
```