7 lines
230 B
Docker
7 lines
230 B
Docker
FROM docker
|
|
WORKDIR /
|
|
COPY composer /composer
|
|
RUN apk update
|
|
RUN apk add --no-cache git python3 py3-pip
|
|
RUN pip3 install --no-cache-dir --break-system-packages -r composer/requirements.txt
|
|
ENTRYPOINT python3 composer/entrypoint.py |