6 lines
115 B
Text
6 lines
115 B
Text
|
FROM debian:12-slim
|
||
|
WORKDIR /repo
|
||
|
COPY run.sh /root
|
||
|
RUN apt update
|
||
|
RUN apt install createrepo-c -y
|
||
|
CMD /root/run.sh
|