Skip to content

Commit

Permalink
Make sure we use newer version of ubuntu to get updated openssh
Browse files Browse the repository at this point in the history
  • Loading branch information
tlbdk committed Nov 14, 2019
1 parent cd051dc commit 1a17f66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ssh/kms.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func (kmss *KMSSigner) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpt
// Query the API.
res, err := kmss.client.AsymmetricSign(kmss.ctx, req)
if err != nil {
return nil, fmt.Errorf("%v\nhash: %v", err, hashLookup[opts.HashFunc()])
return nil, fmt.Errorf("%v\nrequested hash: %v", err, hashLookup[opts.HashFunc()])
}

return res.Signature, nil
Expand Down
2 changes: 1 addition & 1 deletion testdata/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:experimental
FROM ubuntu as builder
FROM ubuntu:19.10 as builder

# Test ssh key injection
RUN apt-get update -qq && \
Expand Down

0 comments on commit 1a17f66

Please sign in to comment.