docker-createrepo_c/Dockerfile
Benjamin Zimmerman ca06077a9a Remove apt cache
This removes the apt cache to make the image a bit smaller
2023-10-02 10:23:04 -05:00

5 lines
No EOL
127 B
Docker

FROM debian:12-slim
WORKDIR /repo
COPY run.sh /root
RUN apt update && apt install createrepo-c -y && apt clean
CMD /root/run.sh