1 | FROM oilshell/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 | RUN --mount=type=cache,id=var-cache-apt-debian-12,target=/var/cache/apt,sharing=locked \
|
7 | --mount=type=cache,id=var-lib-apt-debian-12,target=/var/lib/apt,sharing=locked \
|
8 | du --si -s /var/cache/apt /var/lib/apt && \
|
9 | deps/from-apt.sh benchmarks
|
10 |
|
11 | # Build other dependencies as non-root uke
|
12 | USER uke
|
13 |
|
14 | # Copy pre-built wedges
|
15 |
|
16 | COPY --chown=uke \
|
17 | _build/wedge/binary/oils-for-unix.org/pkg/cmark/0.29.0 \
|
18 | /wedge/oils-for-unix.org/pkg/cmark/0.29.0
|
19 |
|
20 | COPY --chown=uke \
|
21 | _build/wedge/binary/oils-for-unix.org/pkg/re2c/3.0 \
|
22 | /wedge/oils-for-unix.org/pkg/re2c/3.0
|
23 |
|
24 | COPY --chown=uke \
|
25 | _build/wedge/binary/oils-for-unix.org/pkg/uftrace/0.13 \
|
26 | /wedge/oils-for-unix.org/pkg/uftrace/0.13
|
27 |
|
28 | COPY --chown=uke \
|
29 | _build/wedge/binary/oils-for-unix.org/pkg/python3/3.10.4 \
|
30 | /wedge/oils-for-unix.org/pkg/python3/3.10.4
|
31 |
|
32 | # TODO:
|
33 | # - add osh-runtime testdata, from deps/source.medo
|
34 | # - not running ovm-build yet, but it also has testdata
|
35 |
|
36 | COPY --chown=uke \
|
37 | _build/wedge/relative/oils-for-unix.org/pkg/R-libs/2023-04-18 \
|
38 | /home/uke/wedge/oils-for-unix.org/pkg/R-libs/2023-04-18
|
39 |
|
40 | # Copy _build/deps-source -> /home/uke/wedge for now.
|
41 | COPY --chown=uke \
|
42 | _build/deps-source/mypy/mypy-0.780/ \
|
43 | /home/uke/wedge/oils-for-unix.org/pkg/mypy/0.780/
|
44 |
|
45 | # 2025-04: build/deps.sh install-py3-libs depends on this - need tree shaking
|
46 | COPY stdlib/osh/bash-strict.sh /home/uke/tmp/stdlib/osh/bash-strict.sh
|
47 | COPY stdlib/osh/task-five.sh /home/uke/tmp/stdlib/osh/task-five.sh
|
48 | COPY stdlib/osh/byo-server.sh /home/uke/tmp/stdlib/osh/byo-server.sh
|
49 | COPY stdlib/osh/two.sh /home/uke/tmp/stdlib/osh/two.sh
|
50 | COPY test/tsv-lib.sh /home/uke/tmp/test/tsv-lib.sh
|
51 | COPY web/table/html.sh /home/uke/tmp/web/table/html.sh
|
52 |
|
53 | COPY build/deps.sh /home/uke/tmp/build/deps.sh
|
54 | COPY build/dev-shell.sh /home/uke/tmp/build/dev-shell.sh
|
55 |
|
56 | # Hack for now: pass a different MyPy dir
|
57 | # Ideally py3-libs would be created a BUILD TIME with wedge-builder, not at
|
58 | # RUNTIME with uke!
|
59 | RUN build/deps.sh install-py3-libs /home/uke/wedge/oils-for-unix.org/pkg/mypy/0.780/
|
60 |
|
61 | CMD ["sh", "-c", "echo 'hello from oilshell/soil-benchmarks'"]
|