Files
abstracto/python/components/rest-api-base/docker/Dockerfile
Sheldan 53b0c91360 [AB-XXX] replacing packaged xsd for liquibase with reference
using logging module for db and template deployment
updating deployment container dependencies
2024-02-19 00:18:06 +01:00

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"]