mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-12-25 16:32:47 +00:00
dockerfiles: use JSON arguments to make linter happy
Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
This commit is contained in:
parent
895dd938a2
commit
fa5ec6f3b6
|
|
@ -3,4 +3,4 @@ LABEL maintainer="Aron Xu <happyaron.xu@gmail.com>"
|
|||
|
||||
RUN cargo install --git https://github.com/open-rust-initiative/freighter
|
||||
|
||||
CMD /bin/bash
|
||||
CMD ["/bin/bash"]
|
||||
|
|
|
|||
|
|
@ -8,5 +8,5 @@ RUN apt-get update && \
|
|||
RUN git clone https://ftp-master.debian.org/git/archvsync.git/ /ftpsync/
|
||||
WORKDIR /ftpsync/
|
||||
ENV PATH /ftpsync/bin:${PATH}
|
||||
CMD /bin/bash
|
||||
CMD ["/bin/bash"]
|
||||
|
||||
|
|
|
|||
|
|
@ -17,4 +17,4 @@ RUN mkdir -p /tmp/nix.unpack && \
|
|||
rm -rf /tmp/nix.unpack
|
||||
|
||||
ENV HOME=/tmp
|
||||
CMD /bin/bash
|
||||
CMD ["/bin/bash"]
|
||||
|
|
|
|||
|
|
@ -50,4 +50,4 @@ ENV PUB_CACHE /pub-cache
|
|||
|
||||
RUN pub global activate -s git https://github.com/tuna/pub-mirror.git
|
||||
|
||||
CMD /bin/bash
|
||||
CMD ["/bin/bash"]
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@ FROM rust:trixie
|
|||
LABEL maintainer="Jiajie Chen <jiegec@noc.ac.cn>"
|
||||
|
||||
RUN cargo install rustup-mirror
|
||||
CMD /bin/bash
|
||||
CMD ["/bin/bash"]
|
||||
|
|
|
|||
|
|
@ -7,4 +7,4 @@ WORKDIR /home/scripts
|
|||
RUN apk add --update --no-cache --virtual .build-deps bash
|
||||
RUN pip3 install requests tqdm click
|
||||
COPY shadowmire.py .
|
||||
CMD /bin/bash
|
||||
CMD ["/bin/bash"]
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@ FROM rust:trixie
|
|||
LABEL maintainer="Shengqi Chen <i@harrychen.xyz>"
|
||||
|
||||
RUN cargo install tsumugu
|
||||
CMD /bin/bash
|
||||
CMD ["/bin/bash"]
|
||||
|
|
|
|||
Loading…
Reference in New Issue