Skip to content

Commit

Permalink
fix: Install pg libs + bumps rust img version
Browse files Browse the repository at this point in the history
  • Loading branch information
moraesjeremias committed Jan 13, 2025
1 parent 65c1896 commit 14a03e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM rust:1.76.0-slim AS builder
FROM rust:1.79.0-slim AS builder
WORKDIR /build
COPY . .
ARG BUILD_PROFILE=release

RUN apt update && apt install -y make libssl-dev pkg-config \
RUN apt update && apt install -y make libssl-dev pkg-config libpq-dev \
&& cargo build --profile $BUILD_PROFILE --locked \
&& cp /build/target/$BUILD_PROFILE/bridge-api /build/bridge-api

Expand Down

0 comments on commit 14a03e4

Please sign in to comment.