imagetools/Dockerfile
Bastian a8f37866d4
Some checks failed
Linting / linting (push) Failing after 45s
Initial commit
2025-04-05 01:14:04 +02:00

11 lines
188 B
Docker

FROM alpine
RUN apk add --update --no-cache python3 py3-pip git
WORKDIR /app
COPY . .
RUN python3 -m pip install --root-user-action=ignore --break-system-packages .
CMD ["imagetools"]