This commit is contained in:
Andras Schmelczer 2024-12-19 20:19:45 +00:00
parent 4ae8c48cd6
commit b7dbc6ad50
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 9 additions and 3 deletions

View file

@ -3,6 +3,7 @@ FROM rust:1.83 AS builder
WORKDIR /usr/src/backend
RUN apt update && apt install -y musl-tools
RUN rustup install nightly && rustup default nightly
RUN rustup target add x86_64-unknown-linux-musl
RUN cargo install sqlx-cli