Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependencies update #218

Merged
merged 2 commits into from
Apr 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY . ${GOPATH}/src/github.com/mcuadros/ofelia

RUN go build -o /go/bin/ofelia .

FROM alpine:3.17
FROM alpine:3.20

# this label is required to identify container with ofelia running
LABEL ofelia.service=true
Expand Down
16 changes: 8 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ module github.com/mcuadros/ofelia
go 1.11

require (
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2
github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625
github.com/containerd/containerd v1.6.18 // indirect
github.com/docker/docker v20.10.22+incompatible
github.com/fsouza/go-dockerclient v1.9.1
github.com/containerd/containerd v1.7.0 // indirect
github.com/docker/docker v23.0.2+incompatible
github.com/fsouza/go-dockerclient v1.9.7
github.com/gobs/args v0.0.0-20210311043657-b8c0b223be93
github.com/jessevdk/go-flags v1.5.0
github.com/klauspost/compress v1.16.3 // indirect
github.com/mcuadros/go-defaults v1.2.0
github.com/mitchellh/mapstructure v1.5.0
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
github.com/opencontainers/image-spec v1.1.0-rc2 // indirect
github.com/opencontainers/runc v1.1.5 // indirect
github.com/robfig/cron v1.2.0
github.com/sirupsen/logrus v1.9.0 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/tools v0.4.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/tools v0.7.0 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
gopkg.in/gcfg.v1 v1.2.3
Expand Down
Loading