| 1 | FROM oilshell/soil-common | 
| 2 | |
| 3 | # No more apt packages, only Python 3 packages | 
| 4 | |
| 5 | USER uke | 
| 6 | |
| 7 | COPY --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 | 
| 12 | RUN /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 | |
| 17 | CMD ["sh", "-c", "echo 'hello from oilshell/soil-pea'"] | 
| 18 |