-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update dependencies * update go version
- Loading branch information
1 parent
77dadb2
commit 7eb0a97
Showing
6 changed files
with
264 additions
and
80 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:alpine AS builder | ||
FROM golang:1.16-alpine AS builder | ||
ENV GO111MODULE=on | ||
WORKDIR /app | ||
COPY . . | ||
|
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,30 +1,28 @@ | ||
module github.com/gojek/darkroom | ||
|
||
go 1.12 | ||
go 1.16 | ||
|
||
require ( | ||
cloud.google.com/go v0.44.3 | ||
cloud.google.com/go/storage v1.0.0 | ||
github.com/DataDog/datadog-go v2.2.0+incompatible // indirect | ||
github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5 | ||
github.com/anthonynsimon/bild v0.10.1-0.20190710205720-eee9188e4370 | ||
github.com/aws/aws-sdk-go v1.20.19 | ||
github.com/anthonynsimon/bild v0.13.0 | ||
github.com/aws/aws-sdk-go v1.27.0 | ||
github.com/cactus/go-statsd-client/statsd v0.0.0-20190501063751-9a7692639588 | ||
github.com/chai2010/webp v1.1.0 | ||
github.com/gojektech/heimdall v5.0.2+incompatible | ||
github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c // indirect | ||
github.com/gorilla/mux v1.7.3 | ||
github.com/magiconair/properties v1.8.1 // indirect | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/pelletier/go-toml v1.4.0 // indirect | ||
github.com/pkg/errors v0.8.1 | ||
github.com/prometheus/client_golang v1.7.1 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/prometheus/client_golang v1.10.0 | ||
github.com/rcrowley/go-metrics v0.0.0-20190706150252-9beb055b7962 // indirect | ||
github.com/smartystreets/assertions v1.0.0 // indirect | ||
github.com/smartystreets/goconvey v0.0.0-20190710188632-9d28bd7c0945 // indirect | ||
github.com/spf13/cobra v0.0.5 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/viper v1.4.0 | ||
github.com/stretchr/testify v1.6.1 | ||
go.uber.org/zap v1.10.0 | ||
google.golang.org/api v0.9.0 | ||
github.com/spf13/viper v1.7.0 | ||
github.com/stretchr/testify v1.7.0 | ||
go.uber.org/zap v1.17.0 | ||
google.golang.org/api v0.13.0 | ||
sigs.k8s.io/controller-runtime v0.6.1 | ||
) |
Oops, something went wrong.