Skip to content

Commit

Permalink
bump build image version
Browse files Browse the repository at this point in the history
rdcm committed Aug 25, 2024
1 parent 4a90cbf commit b76fa95
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rates-api/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions rates-exporter/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b76fa95

Please sign in to comment.