Dockerfile 750 B

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