mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-01-07 01:38:32 +00:00
using logging module for db and template deployment updating deployment container dependencies
9 lines
263 B
Docker
9 lines
263 B
Docker
FROM python:3.12.2-alpine3.19
|
|
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"] |