mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-01-01 15:28:35 +00:00
10 lines
296 B
Docker
10 lines
296 B
Docker
FROM python:3.10.13-alpine3.18
|
|
RUN apk --no-cache add msttcorefonts-installer fontconfig && \
|
|
update-ms-fonts && \
|
|
fc-cache -f
|
|
ADD wrapper /
|
|
ADD python/requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
ADD resources /python/resources
|
|
ADD python /python
|
|
CMD ["/run.sh"] |