Skip to content

Commit

Permalink
Merge pull request #32 from availproject/fix/dockerfile
Browse files Browse the repository at this point in the history
fix: Installs pg libs + bumps rust img version
  • Loading branch information
moraesjeremias authored Jan 13, 2025
2 parents 65c1896 + 14a03e4 commit 1ad9956
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 1ad9956

Please sign in to comment.