Dockerfile 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. FROM python:3.7 as buildimage
  2. RUN useradd -u 1000 -ms /bin/bash python
  3. WORKDIR /home/python
  4. USER python
  5. RUN python -m venv /home/python/venv
  6. # "Activate" the venv
  7. ENV PATH="/home/python/venv/bin:$PATH"
  8. COPY req.txt req.txt
  9. RUN pip install -r req.txt
  10. COPY jam.h jam.h
  11. COPY jamlib.a jamlib.a
  12. COPY jamlib_build.py jamlib_build.py
  13. RUN python jamlib_build.py
  14. RUN pip wheel --wheel-dir=/home/python/wheels -r req.txt
  15. RUN find .
  16. RUN ls -la
  17. RUN pip freeze
  18. FROM python:3.7-slim
  19. RUN useradd -u 1000 -ms /bin/bash python
  20. # && \
  21. # apt update && \
  22. # apt install -y git
  23. WORKDIR /home/python
  24. USER python
  25. RUN python -m venv /home/python/venv
  26. # "Activate" the venv
  27. ENV PATH="/home/python/venv/bin:$PATH"
  28. COPY --from=buildimage /home/python/wheels /home/python/wheels
  29. COPY req.txt req.txt
  30. RUN pip install --no-index --find-links=/home/python/wheels -r req.txt
  31. COPY --from=buildimage /home/python/_pi_cffi.* /home/python/
  32. # COPY --from=buildimage /home/python/venv/lib/python3.7/site-packages/.libs_cffi_backend /home/python/venv/lib/python3.7/site-packages/
  33. # CMD ["python", "tcp-proxy.py"]