| 1234567891011121314151617 |
- FROM ubuntu:24.04
- RUN apt update && apt install -y ca-certificates && rm -rf /var/lib/apt/lists/*
- # 设置工作目录
- WORKDIR /app
- COPY nexus_client nexus_client
- RUN chmod +x nexus_client
- COPY entrypoint.sh entrypoint.sh
- RUN chmod +x entrypoint.sh
- # 设置默认命令
- ENTRYPOINT ["./entrypoint.sh"]
|