mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-01-08 10:31:01 +00:00
removing doge image generation from default base split rest-api into separate modules (base and extensions)
9 lines
264 B
Docker
9 lines
264 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 python /python
|
|
CMD ["/run.sh"] |