Skip to content

Commit

Permalink
chore(deps): update dockerfile dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 13, 2025
1 parent cfa28c7 commit cf548f7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions stacks/flow.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.12@sha256:93bfd3b68c109427185cd78b4779fc82b484b0b7618e36d0f104d4d801e66d25

FROM golang:1.23-alpine@sha256:6c5c9590f169f77c8046e45c611d3b28fe477789acd8d3762d23d4744de69812 AS builder
FROM golang:1.23-alpine@sha256:c23339199a08b0e12032856908589a6d41a0dab141b8b3b21f156fc571a3f1d3 AS builder
RUN apk add --no-cache gcc geos-dev musl-dev
WORKDIR /root/flow

Expand All @@ -18,7 +18,7 @@ WORKDIR /root/flow
ENV CGO_ENABLED=1
RUN go build -ldflags="-s -w" -o /root/peer-flow

FROM alpine:3.21@sha256:21dc6063fd678b478f57c0e13f47560d0ea4eeba26dfc947b2a4f81f686b9f45 AS flow-base
FROM alpine:3.21@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099 AS flow-base
RUN apk add --no-cache ca-certificates geos && \
adduser -s /bin/sh -D peerdb
USER peerdb
Expand Down
4 changes: 2 additions & 2 deletions stacks/peerdb-server.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1@sha256:93bfd3b68c109427185cd78b4779fc82b484b0b7618e36d0f104d4d801e66d25


FROM lukemathwalker/cargo-chef:latest-rust-alpine@sha256:4561709ddacae431a0150658604e112b11f6e5b112fcf1bc10b85a6bbf84e723 AS chef
FROM lukemathwalker/cargo-chef:latest-rust-alpine@sha256:4bc7e71be4e44e6e251894268da3b9abeb0a33e67d7dc4df5c36d7093f33a355 AS chef

WORKDIR /root

Expand All @@ -24,7 +24,7 @@ COPY protos /root/protos
WORKDIR /root/nexus
RUN cargo build --release --bin peerdb-server

FROM alpine:3.21@sha256:21dc6063fd678b478f57c0e13f47560d0ea4eeba26dfc947b2a4f81f686b9f45
FROM alpine:3.21@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099
RUN apk add --no-cache ca-certificates postgresql-client curl iputils && \
adduser -s /bin/sh -D peerdb && \
install -d -m 0755 -o peerdb /var/log/peerdb
Expand Down
2 changes: 1 addition & 1 deletion stacks/peerdb-ui.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.12@sha256:93bfd3b68c109427185cd78b4779fc82b484b0b7618e36d0f104d4d801e66d25

# Base stage
FROM node:22-alpine@sha256:6e80991f69cc7722c561e5d14d5e72ab47c0d6b6cfb3ae50fb9cf9a7b30fdf97 AS base
FROM node:22-alpine@sha256:f2dc6eea95f787e25f173ba9904c9d0647ab2506178c7b5b7c5a3d02bc4af145 AS base
ENV NPM_CONFIG_UPDATE_NOTIFIER=false
RUN apk add --no-cache openssl && \
mkdir /app && \
Expand Down

0 comments on commit cf548f7

Please sign in to comment.