OILS / deps / Dockerfile.soil-pea View on Github | oilshell.org

18 lines, 11 significant
1FROM oilshell/soil-common
2
3# No more apt packages, only Python 3 packages
4
5USER uke
6
7COPY --chown=uke \
8 _build/wedge/binary/oils-for-unix.org/pkg/python3/3.10.4 \
9 /wedge/oils-for-unix.org/pkg/python3/3.10.4
10
11# Install MyPy with the python3 wedge
12RUN /wedge/oils-for-unix.org/pkg/python3/3.10.4/bin/python3 -m pip \
13 install mypy
14
15# pea/TEST.sh uses the wedge as well
16
17CMD ["sh", "-c", "echo 'hello from oilshell/soil-pea'"]
18