Dockerfile 707 B

12345678910111213141516171819202122232425262728293031323334
  1. FROM python:3.10-slim-bullseye
  2. RUN apt update
  3. RUN apt install -y build-essential tzdata gfortran libopenblas-dev libboost-all-dev
  4. ENV TZ=America/New_York
  5. # Copy and compile Kakadu codec.
  6. WORKDIR ${_workroot}
  7. ENV _workroot "/usr/local/scriptshifter/src"
  8. WORKDIR ${_workroot}
  9. COPY requirements.txt ./
  10. RUN pip install -r requirements.txt
  11. # Remove development packages.
  12. RUN apt remove -y build-essential
  13. RUN apt autoremove -y
  14. RUN addgroup --system www
  15. RUN adduser --system www
  16. RUN gpasswd -a www www
  17. COPY entrypoint.sh uwsgi.ini wsgi.py ./
  18. COPY ext ./ext/
  19. COPY scriptshifter ./scriptshifter/
  20. RUN chmod +x ./entrypoint.sh
  21. RUN chown -R www:www ${_workroot} .
  22. EXPOSE 8000
  23. ENTRYPOINT ["./entrypoint.sh"]