This repository has been archived by the owner on Feb 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: marcin.janas <[email protected]>
- Loading branch information
1 parent
86b692a
commit fef9c81
Showing
6 changed files
with
137 additions
and
297 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,10 +1,10 @@ | ||
FROM golang:1.11.0-alpine3.8 | ||
FROM golang:1.18-alpine | ||
|
||
WORKDIR /go/src/github.com/AirHelp/rabbit-amazon-forwarder | ||
|
||
RUN apk --no-cache add git gcc musl-dev && go get -u github.com/golang/dep/cmd/dep | ||
RUN apk --no-cache add git gcc musl-dev | ||
|
||
COPY Gopkg.toml Gopkg.lock ./ | ||
RUN dep ensure -v -vendor-only | ||
COPY go.mod go.sum ./ | ||
RUN go mod tidy -go=1.18 -compat=1.18 | ||
|
||
COPY . . |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
module github.com/AirHelp/rabbit-amazon-forwarder | ||
|
||
go 1.18 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.43.32 | ||
github.com/onsi/ginkgo v1.16.5 | ||
github.com/onsi/gomega v1.19.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/streadway/amqp v1.0.0 | ||
) | ||
|
||
require ( | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/nxadm/tail v1.4.8 // indirect | ||
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect | ||
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
Oops, something went wrong.