2 Star 2 Fork 1

Gitee 极速下载/iggy

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/iggy-rs/iggy
Clone or Download
Dockerfile.cross 696 Bytes
Copy Edit Raw Blame History
ARG CROSS_BASE_IMAGE
FROM $CROSS_BASE_IMAGE
ARG USER
ARG CROSS_CONTAINER_UID
ARG CROSS_CONTAINER_GID
USER root
RUN apt-get update \
&& apt-get install gnome-keyring \
--yes --no-install-recommends \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Copy the entrypoint script into the container
COPY scripts/cross-docker-entrypoint.sh /usr/local/bin/
# Make the entrypoint script executable
RUN chmod +x /usr/local/bin/cross-docker-entrypoint.sh
# Add user with specified UID and GID
RUN groupadd -g $CROSS_CONTAINER_GID $USER
RUN useradd -r -u $CROSS_CONTAINER_UID -g $CROSS_CONTAINER_GID -m $USER
# Set the entry point
ENTRYPOINT ["/usr/local/bin/cross-docker-entrypoint.sh"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Rust
1
https://gitee.com/mirrors/iggy.git
git@gitee.com:mirrors/iggy.git
mirrors
iggy
iggy
master

Search

D67c1975 1850385 1daf7b77 1850385