imagetools/Dockerfile
Bastian 900c9e07b6
Some checks failed
Linting / linting (push) Failing after 1m38s
Initial commit
2025-04-04 14:42:07 +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"]