Inspectable layer

This commit is contained in:
Manav Rathi
2025-01-23 14:48:20 +05:30
parent c4c8447f54
commit a4e49daeb1
2 changed files with 4 additions and 5 deletions

View File

@@ -1,7 +1,6 @@
FROM ubuntu:24.04
RUN set -e && \
apt-get update -y && \
apt-get install -y libvips-tools
RUN apt-get update -y
RUN 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 -v $(pwd):/w vips-test copy /w/1.heic /w/1.jpeg
docker run -it --rm -v $(pwd):/w vips-test vips copy /w/1.heic /w/1.jpeg
```