File tree 2 files changed +14
-5
lines changed
2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -15,4 +15,5 @@ RUN useradd --create-home git-user
15
15
RUN usermod -aG sudo git-user
16
16
RUN echo "%sudo ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
17
17
USER git-user
18
- WORKDIR /home/git-user
18
+ WORKDIR /home/git-user
19
+ ENTRYPOINT [ "/usr/bin/bash", "-c" ]
Original file line number Diff line number Diff line change @@ -8,28 +8,36 @@ services:
8
8
UBUNTU_VERSION : " 14.04"
9
9
volumes :
10
10
- " ../compile-git-with-openssl.sh:/home/git-user/compile-git-with-openssl.sh:ro"
11
- command : " ./compile-git-with-openssl.sh --skip-tests"
11
+ command :
12
+ - " ./compile-git-with-openssl.sh"
13
+ - " --skip-tests"
12
14
ubuntu_16.04 :
13
15
build :
14
16
dockerfile : Dockerfile.ubuntu
15
17
args :
16
18
UBUNTU_VERSION : " 16.04"
17
19
volumes :
18
20
- " ../compile-git-with-openssl.sh:/home/git-user/compile-git-with-openssl.sh:ro"
19
- command : " ./compile-git-with-openssl.sh --skip-tests"
21
+ command :
22
+ - " ./compile-git-with-openssl.sh"
23
+ - " --skip-tests"
20
24
ubuntu_18.04 :
21
25
build :
22
26
dockerfile : Dockerfile.ubuntu
23
27
args :
24
28
UBUNTU_VERSION : " 18.04"
25
29
volumes :
26
30
- " ../compile-git-with-openssl.sh:/home/git-user/compile-git-with-openssl.sh:ro"
27
- command : " ./compile-git-with-openssl.sh --skip-tests"
31
+ command :
32
+ - " ./compile-git-with-openssl.sh"
33
+ - " --skip-tests"
28
34
ubuntu_20.04 :
29
35
build :
30
36
dockerfile : Dockerfile.ubuntu
31
37
args :
32
38
UBUNTU_VERSION : " 20.04"
33
39
volumes :
34
40
- " ../compile-git-with-openssl.sh:/home/git-user/compile-git-with-openssl.sh:ro"
35
- command : " ./compile-git-with-openssl.sh --skip-tests"
41
+ command :
42
+ - " ./compile-git-with-openssl.sh"
43
+ - " --skip-tests"
You can’t perform that action at this time.
0 commit comments