From b76fa9581e08aedd3c5dae35ae8ccc6fe539be60 Mon Sep 17 00:00:00 2001 From: rdcm Date: Mon, 26 Aug 2024 00:17:20 +0300 Subject: [PATCH] bump build image version --- rates-api/Dockerfile | 4 ++-- rates-exporter/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rates-api/Dockerfile b/rates-api/Dockerfile index 9e304de..0fb38df 100644 --- a/rates-api/Dockerfile +++ b/rates-api/Dockerfile @@ -1,5 +1,5 @@ # build image -FROM rust:1.73.0-slim-buster as build +FROM rust:1.79.0-slim-buster as build WORKDIR /app COPY . . @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y build-essential \ RUN --mount=type=cache,target=/app/target cargo build --release && cp target/release/rates-api /rates-api -# api image +# app image FROM debian:buster-slim as api RUN apt-get update && apt-get install -y libssl1.1 ca-certificates diff --git a/rates-exporter/Dockerfile b/rates-exporter/Dockerfile index afb7d01..702c0f5 100644 --- a/rates-exporter/Dockerfile +++ b/rates-exporter/Dockerfile @@ -1,5 +1,5 @@ # build image -FROM rust:1.73.0-slim-buster as build +FROM rust:1.79.0-slim-buster as build WORKDIR /app COPY . . @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y build-essential \ RUN --mount=type=cache,target=/app/target cargo build --release && cp target/release/rates-exporter /rates-exporter -# acl image +# app image FROM debian:buster-slim as rates-exporter RUN apt-get update && apt-get install -y libssl1.1 ca-certificates