docker-createrepo_c/Dockerfile

5 lines
127 B
Docker
Raw Normal View History

2023-08-27 20:31:51 -05:00
FROM debian:12-slim
WORKDIR /repo
COPY run.sh /root
RUN apt update && apt install createrepo-c -y && apt clean
2023-08-27 20:31:51 -05:00
CMD /root/run.sh