-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use our ubuntu base for certstrap + cf-acceptance-tests
- Loading branch information
Showing
2 changed files
with
18 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
FROM ubuntu:20.04 | ||
FROM ghcr.io/alphagov/paas/ubuntu:main | ||
|
||
ENV GIT_COMMIT bd8b02aa8c1b81bc5cfc070722a1a894a348f00a | ||
ENV CERTSTRAP_VERSION 1.2.0 | ||
|
||
RUN apt update && apt install -y openssl curl ca-certificates wget \ | ||
&& wget -O certstrap https://github.com/square/certstrap/releases/download/v${CERTSTRAP_VERSION}/certstrap-${CERTSTRAP_VERSION}-linux-amd64 \ | ||
&& chmod +x certstrap \ | ||
&& cp certstrap /usr/local/bin/ | ||
RUN wget -O certstrap https://github.com/square/certstrap/releases/download/v${CERTSTRAP_VERSION}/certstrap-${CERTSTRAP_VERSION}-linux-amd64 \ | ||
&& chmod +x certstrap \ | ||
&& cp certstrap /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters