Files
composer/Dockerfile
2025-12-31 20:06:55 -08:00

8 lines
216 B
Docker

FROM docker
WORKDIR /
COPY composer /composer
COPY stack /stack
RUN apk update
RUN apk add --no-cache git python3 py3-pip
RUN pip3 install -r composer/requirements.txt
ENTRYPOINT ['python3', 'composer/entrypoint.py']