1 | # This image is only for TESTING |
2 | |
3 | FROM oilshell/soil-common |
4 | |
5 | RUN --mount=type=cache,id=var-cache-apt,target=/var/cache/apt,sharing=locked \ |
6 | --mount=type=cache,id=var-lib-apt,target=/var/lib/apt,sharing=locked \ |
7 | du --si -s /var/cache/apt /var/lib/apt && \ |
8 | deps/from-apt.sh test-image |
9 | |
10 | USER uke |
11 | |
12 | CMD ["sh", "-c", "echo 'hello from oilshell/soil-test-image'"] |