Skip to content

Commit

Permalink
Upgrade backend dependencies and some base images
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Castaño Arteaga <[email protected]>
  • Loading branch information
tegioz committed Aug 16, 2023
1 parent fa2de5b commit 94386db
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 44 deletions.
61 changes: 30 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ edition = "2021"
rust-version = "1.65"

[workspace.dependencies]
anyhow = "1.0.72"
async-trait = "0.1.72"
anyhow = "1.0.74"
async-trait = "0.1.73"
axum = { version = "0.6.20", features = ["macros"] }
bincode = "1.3.3"
clap = { version = "4.3.19", features = ["derive"] }
clap = { version = "4.3.21", features = ["derive"] }
config = "0.13.3"
deadpool = "0.9.5"
deadpool-postgres = { version = "0.10.5", features = ["serde"] }
Expand All @@ -29,13 +29,13 @@ lazy_static = "1.4.0"
mime = "0.3.17"
mockall = "0.11.4"
mockito = "1.1.0"
openssl = { version = "0.10.55", features = ["vendored"] }
openssl = { version = "0.10.56", features = ["vendored"] }
postgres-openssl = "0.5.0"
postgres-types = { version = "0.2.5", features = ["derive"] }
regex = "1.9.1"
regex = "1.9.3"
reqwest = { version = "0.11.18", features = ["json"] }
serde = { version = "1.0.181", features = ["derive"] }
serde_json = "1.0.104"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.105"
serde_qs = "0.12.0"
serde_yaml = "0.9.25"
sha2 = "0.10.7"
Expand All @@ -45,7 +45,7 @@ time = { version = "0.3.23", features = [
"parsing",
"serde",
] }
tokio = { version = "1.29.1", features = [
tokio = { version = "1.31.0", features = [
"macros",
"process",
"rt-multi-thread",
Expand Down
2 changes: 1 addition & 1 deletion clotributor-apiserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN yarn install --network-concurrency 1
RUN yarn build

# Final stage
FROM alpine:3.18.2
FROM alpine:3.18.3
RUN apk --no-cache add ca-certificates && addgroup -S clotributor && adduser -S clotributor -G clotributor
USER clotributor
WORKDIR /home/clotributor
Expand Down
2 changes: 1 addition & 1 deletion clotributor-registrar/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ WORKDIR /clotributor/clotributor-registrar
RUN cargo build --release

# Final stage
FROM alpine:3.18.2
FROM alpine:3.18.3
RUN apk --no-cache add ca-certificates && addgroup -S clotributor && adduser -S clotributor -G clotributor
USER clotributor
WORKDIR /home/clotributor
Expand Down
2 changes: 1 addition & 1 deletion clotributor-tracker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ WORKDIR /clotributor/clotributor-tracker
RUN cargo build --release

# Final stage
FROM alpine:3.18.2
FROM alpine:3.18.3
RUN apk --no-cache add ca-certificates && addgroup -S clotributor && adduser -S clotributor -G clotributor
USER clotributor
WORKDIR /home/clotributor
Expand Down
4 changes: 2 additions & 2 deletions database/migrations/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Build tern
FROM golang:1.20.7-alpine3.18 AS tern
FROM golang:1.21.0-alpine3.18 AS tern
RUN apk --no-cache add git
RUN go install github.com/jackc/tern@latest

# Build final image
FROM alpine:3.18.2
FROM alpine:3.18.3
RUN addgroup -S clotributor && adduser -S clotributor -G clotributor
USER clotributor
WORKDIR /home/clotributor
Expand Down

0 comments on commit 94386db

Please sign in to comment.