Skip to content

Commit

Permalink
chore(deps): update all docker tags
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Oct 18, 2021
1 parent 5d50c84 commit e6b29f8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defaults: &defaults
working_directory: /go/src/moul.io/quicssh
docker:
- image: circleci/golang:1.16
- image: circleci/golang:1.17
environment:
GO111MODULE: "on"

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build
FROM golang:1.16.4-alpine as builder
FROM golang:1.17.2-alpine as builder
RUN apk add --no-cache git gcc musl-dev make
ENV GO111MODULE=on
WORKDIR /go/src/moul.io/quicssh
Expand All @@ -9,7 +9,7 @@ COPY . ./
RUN make install

# minimalist runtime
FROM alpine:3.13.5
FROM alpine:3.14.2
COPY --from=builder /go/bin/quicssh /bin/
ENTRYPOINT ["/bin/quicssh"]
CMD []
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module moul.io/quicssh
go 1.12

require (
github.com/lucas-clemente/quic-go v0.18.0
github.com/lucas-clemente/quic-go v0.23.0
golang.org/x/net 62affa334b73
gopkg.in/urfave/cli.v2 v2.2.0
gopkg.in/urfave/cli.v2 v2.3.0
)

0 comments on commit e6b29f8

Please sign in to comment.