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

SD-RAN Engineering Team Week3 Assignment #348

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
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
4 changes: 2 additions & 2 deletions build/onos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0

FROM onosproject/golang-build:v1.3.0 as build
FROM onosproject/golang-build:v1.3.1 as build

ENV GO111MODULE=on
WORKDIR /build
Expand All @@ -19,7 +19,7 @@ RUN go build -mod=vendor -o build/_output/onos ./cmd/onos
RUN go build -mod=vendor -o build/_output/gnmi_cli ./cmd/gnmi_cli
RUN go install github.com/atomix/cli/cmd/atomix@latest

FROM alpine:3.14
FROM alpine:3.19
RUN apk add bash bash-completion curl libc6-compat gettext jq

RUN addgroup -S onos && adduser -S -G onos onos --home /home/onos
Expand Down
32 changes: 16 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ go 1.19
require (
github.com/aybabtme/uniplot v0.0.0-20151203143629-039c559e5e7e
github.com/gogo/protobuf v1.3.2
github.com/golang/glog v1.0.0
github.com/golang/protobuf v1.5.3
github.com/golang/glog v1.2.0
github.com/golang/protobuf v1.5.4
github.com/onosproject/onos-api/go v0.10.31
github.com/onosproject/onos-lib-go v0.10.24
github.com/onosproject/onos-lib-go v0.10.25
github.com/onosproject/onos-ric-sdk-go v0.8.12
github.com/openconfig/gnmi v0.9.1
github.com/prometheus/common v0.26.0
github.com/spf13/cobra v1.7.0
github.com/stretchr/testify v1.8.2
golang.org/x/crypto v0.1.0
google.golang.org/grpc v1.54.0
github.com/stretchr/testify v1.9.0
golang.org/x/crypto v0.22.0
google.golang.org/grpc v1.63.2
)

require (
Expand All @@ -34,8 +34,8 @@ require (
github.com/golang-jwt/jwt/v5 v5.0.0 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
github.com/hashicorp/go-uuid v1.0.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
Expand Down Expand Up @@ -73,14 +73,14 @@ require (
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.21.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/oauth2 v0.4.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/term v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
google.golang.org/protobuf v1.28.1 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/oauth2 v0.17.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/term v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect
gopkg.in/ini.v1 v1.66.4 // indirect
gopkg.in/square/go-jose.v1 v1.1.2 // indirect
Expand Down
Loading