| 1 | FROM ghcr.io/oils-for-unix/soil-debian-12
|
| 2 |
|
| 3 | # Copy again to prevent unsound caching
|
| 4 | COPY deps/from-apt.sh /home/uke/tmp/deps/from-apt.sh
|
| 5 |
|
| 6 | # UTF-8 tweak, like ovm-tarball
|
| 7 | RUN --mount=type=cache,id=var-cache-apt-debian-12,target=/var/cache/apt,sharing=locked \
|
| 8 | --mount=type=cache,id=var-lib-apt-debian-12,target=/var/lib/apt,sharing=locked \
|
| 9 | du --si -s /var/cache/apt /var/lib/apt && \
|
| 10 | deps/from-apt.sh layer-locales
|
| 11 |
|
| 12 | USER uke
|
| 13 |
|
| 14 | CMD ["sh", "-c", "echo 'hello from oilshell/soil-dummy'"]
|