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