|
1 | 1 | # Install p4 CLI (keep this up to date with cmd/gitserver/Dockerfile)
|
2 |
| -FROM sourcegraph/alpine-3.14:190630_2022-12-22_6988b6221a72@sha256:782f094e3a6397a5f57305efac7b3f0e8c992eece31c98f93c1a518cc6c876e5 AS p4cli |
| 2 | +FROM sourcegraph/alpine-3.14:196830_2023-02-01_af83eee939ca@sha256:b4d7040d41fcf37fbf96fe5a14c39ae15580a3a6c76355cc7ea04a74b6c3b9fa AS p4cli |
3 | 3 |
|
4 | 4 | # hadolint ignore=DL3003
|
5 | 5 | RUN wget http://cdist2.perforce.com/perforce/r21.2/bin.linux26x86_64/p4 && \
|
6 | 6 | mv p4 /usr/local/bin/p4 && \
|
7 | 7 | chmod +x /usr/local/bin/p4
|
8 | 8 |
|
9 | 9 | # Install p4-fusion (keep this up to date with cmd/gitserver/Dockerfile)
|
10 |
| -FROM sourcegraph/alpine-3.14:190630_2022-12-22_6988b6221a72@sha256:782f094e3a6397a5f57305efac7b3f0e8c992eece31c98f93c1a518cc6c876e5 AS p4-fusion |
| 10 | +FROM sourcegraph/alpine-3.14:196830_2023-02-01_af83eee939ca@sha256:b4d7040d41fcf37fbf96fe5a14c39ae15580a3a6c76355cc7ea04a74b6c3b9fa AS p4-fusion |
11 | 11 |
|
12 | 12 | COPY p4-fusion-install-alpine.sh /p4-fusion-install-alpine.sh
|
13 | 13 | RUN /p4-fusion-install-alpine.sh
|
14 | 14 |
|
15 | 15 | # Install coursier (keep this up to date with cmd/gitserver/Dockerfile)
|
16 |
| -FROM sourcegraph/alpine-3.14:190630_2022-12-22_6988b6221a72@sha256:782f094e3a6397a5f57305efac7b3f0e8c992eece31c98f93c1a518cc6c876e5 AS coursier |
| 16 | +FROM sourcegraph/alpine-3.14:196830_2023-02-01_af83eee939ca@sha256:b4d7040d41fcf37fbf96fe5a14c39ae15580a3a6c76355cc7ea04a74b6c3b9fa AS coursier |
17 | 17 |
|
18 | 18 | RUN wget -O coursier.gz https://github.com/coursier/coursier/releases/download/v2.1.0-RC4/cs-x86_64-pc-linux-static.gz && \
|
19 | 19 | gzip -d coursier.gz && \
|
20 | 20 | mv coursier /usr/local/bin/coursier && \
|
21 | 21 | chmod +x /usr/local/bin/coursier
|
22 | 22 |
|
23 |
| -FROM sourcegraph/alpine-3.14:190630_2022-12-22_6988b6221a72@sha256:782f094e3a6397a5f57305efac7b3f0e8c992eece31c98f93c1a518cc6c876e5 |
| 23 | +FROM sourcegraph/alpine-3.14:196830_2023-02-01_af83eee939ca@sha256:b4d7040d41fcf37fbf96fe5a14c39ae15580a3a6c76355cc7ea04a74b6c3b9fa |
24 | 24 | # TODO(security): This container should not be running as root!
|
25 | 25 | #
|
26 | 26 | # The default user in sourcegraph/alpine is a non-root `sourcegraph` user but because old deployments
|
|
0 commit comments