We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
git clone --bare
mv
1 parent 699f6f4 commit 2fd4b44Copy full SHA for 2fd4b44
crates/cargo-test-support/containers/apache/Dockerfile
@@ -10,10 +10,9 @@ RUN git config --global user.email "[email protected]" &&\
10
git init -b master . &&\
11
git add Cargo.toml src &&\
12
git commit -m "Initial commit" &&\
13
- mv .git ../bar.git &&\
14
- cd ../bar.git &&\
15
- git config --bool core.bare true &&\
16
- rm -rf ../bar
+ cd .. &&\
+ git clone --bare bar bar.git &&\
+ rm -rf bar
17
WORKDIR /
18
19
EXPOSE 443
crates/cargo-test-support/containers/sshd/Dockerfile
@@ -17,10 +17,9 @@ RUN git config --global user.email "[email protected]" &&\
20
21
22
23
24
25
USER root
26
0 commit comments