Reverting port changes
Some checks failed
Rust Build / Check (pull_request) Failing after 27s
Rust Build / Test Suite (pull_request) Failing after 47s
Rust Build / Rustfmt (pull_request) Failing after 25s
Rust Build / Clippy (pull_request) Failing after 28s
Rust Build / build (pull_request) Failing after 24s

This commit is contained in:
2025-07-21 23:14:25 -04:00
parent 5e03374d6c
commit 21c8b398e6

View File

@@ -20,15 +20,16 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# Replace `your-git-server.com` with your actual Git host # Replace `your-git-server.com` with your actual Git host
RUN mkdir -p ~/.ssh && \ RUN mkdir -p ~/.ssh && \
echo "Host git.kundeng.us" >> ~/.ssh/config && \ echo "Host git.kundeng.us" >> ~/.ssh/config && \
echo " Port 8122" >> ~/.ssh/config && \ # echo " Port 8122" >> ~/.ssh/config && \
echo " User git" >> ~/.ssh/config && \ echo " User git" >> ~/.ssh/config && \
chmod 600 ~/.ssh/config chmod 600 ~/.ssh/config
# << --- ADD HOST KEY HERE --- >> # << --- ADD HOST KEY HERE --- >>
# Replace 'yourgithost.com' with the actual hostname (e.g., github.com) # Replace 'yourgithost.com' with the actual hostname (e.g., github.com)
# RUN ssh-keyscan -p 8122 git.kundeng.us >> ~/.ssh/known_hosts # RUN ssh-keyscan -p 8122 git.kundeng.us >> ~/.ssh/known_hosts
RUN mkdir -p ~/.ssh && \ # RUN mkdir -p ~/.ssh && \
ssh-keyscan -p 8122 git.kundeng.us >> ~/.ssh/known_hosts # ssh-keyscan -p 8122 git.kundeng.us >> ~/.ssh/known_hosts
RUN ssh-keyscan git.kundeng.us >> ~/.ssh/known_hosts
# RUN ssh-add -L # RUN ssh-add -L