-
-
Notifications
You must be signed in to change notification settings - Fork 612
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:letsencrypt/boulder into newnewtxnb…
…uilder
- Loading branch information
Showing
8 changed files
with
63 additions
and
20 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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
ARG GO_VERSION | ||
|
||
FROM golang:${GO_VERSION} AS build | ||
|
||
WORKDIR /app | ||
|
||
COPY go.mod go.sum vendor ./ | ||
|
||
COPY . . | ||
|
||
RUN go build -o /bin/ct-test-srv ./test/ct-test-srv/main.go | ||
|
||
FROM ubuntu:24.04 | ||
|
||
RUN useradd -r -u 10001 cttest | ||
|
||
COPY --from=build /bin/ct-test-srv /bin/ct-test-srv | ||
|
||
COPY test/ct-test-srv/ct-test-srv.json /etc/ct-test-srv.json | ||
|
||
ENTRYPOINT ["/bin/ct-test-srv"] | ||
|
||
USER cttest | ||
|
||
CMD ["-config", "/etc/ct-test-srv.json"] |
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
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
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