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. COPY entrypoint.sh uwsgi.ini wsgi.py ./
  12. COPY ext ./ext/
  13. COPY scriptshifter ./scriptshifter/
  14. RUN chmod +x ./entrypoint.sh
  15. RUN addgroup --system www
  16. RUN adduser --system www
  17. RUN gpasswd -a www www
  18. RUN chown -R www:www ${_workroot} .
  19. # Remove development packages.
  20. RUN apt remove -y build-essential
  21. RUN apt autoremove -y
  22. EXPOSE 8000
  23. ENTRYPOINT ["./entrypoint.sh"]