imagetools/Dockerfile
Bastian 4ca1f2ab53
All checks were successful
Linting / linting (push) Successful in 16s
Initial commit
2025-04-05 01:28:56 +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"]