File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ FROM golang:1.19-alpine as build
1515WORKDIR /tmp/playground
1616COPY cmd ./cmd
1717COPY pkg ./pkg
18+ COPY internal ./internal
1819COPY go.mod .
1920COPY go.sum .
2021ARG APP_VERSION=1.0.0
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ FROM golang:1.19-alpine as build
1111WORKDIR /tmp/playground
1212COPY cmd ./cmd
1313COPY pkg ./pkg
14+ COPY internal ./internal
1415COPY go.mod .
1516COPY go.sum .
1617ARG APP_VERSION=1.0.0
Original file line number Diff line number Diff line change 44
55require (
66 github.com/TheZeroSlave/zapsentry v1.10.0
7+ github.com/avast/retry-go v3.0.0+incompatible
78 github.com/gorilla/mux v1.7.3
89 github.com/kelseyhightower/envconfig v1.4.0
910 github.com/pkg/errors v0.8.1
@@ -16,11 +17,11 @@ require (
1617 go.uber.org/zap v1.21.0
1718 golang.org/x/exp v0.0.0-20230321023759-10a507213a29
1819 golang.org/x/mod v0.10.0
20+ golang.org/x/sync v0.2.0
1921 golang.org/x/time v0.0.0-20201208040808-7e3f01d25324
2022)
2123
2224require (
23- github.com/avast/retry-go v3.0.0+incompatible // indirect
2425 github.com/benbjohnson/clock v1.1.0 // indirect
2526 github.com/davecgh/go-spew v1.1.1 // indirect
2627 github.com/getsentry/sentry-go v0.13.0 // indirect
@@ -29,7 +30,6 @@ require (
2930 github.com/spf13/pflag v1.0.5 // indirect
3031 go.uber.org/atomic v1.9.0 // indirect
3132 go.uber.org/multierr v1.8.0 // indirect
32- golang.org/x/sync v0.2.0 // indirect
3333 golang.org/x/sys v0.3.0 // indirect
3434 gopkg.in/yaml.v3 v3.0.1 // indirect
3535)
You can’t perform that action at this time.
0 commit comments