From c99b97a1638a373e7a8d7fc7198fd40055efde41 Mon Sep 17 00:00:00 2001 From: skye Date: Tue, 9 May 2023 22:29:04 +0300 Subject: [PATCH] fix: alpine build yes --- README.md | 4 ++++ client/Dockerfile.alpine | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index df34cd4..1741084 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,10 @@ See `dev` branch for latest changes. --- A deck building game with multiplayer over a web API. +### Musl things for ttf2mesh +Add `#define PATH_MAX (4096)` +to `.cargo-cache/registry/src/github.com-1ecc6299db9ec823/ttf2mesh-sys-0.1.2/ttf2mesh/ttf2mesh.c` + ### Commit conventions Commits after 09.01.2023 MUST follow [Conventional Commits 1.0.0](https://www.conventionalcommits.org/en/v1.0.0/). diff --git a/client/Dockerfile.alpine b/client/Dockerfile.alpine index ea2d781..65dfa1f 100644 --- a/client/Dockerfile.alpine +++ b/client/Dockerfile.alpine @@ -5,5 +5,6 @@ FROM rust:1.69.0-alpine3.17 RUN apk update RUN apk add musl-dev pkgconf \ - openssl-dev + openssl-dev \ + clang clang-dev clang-libs -- 2.44.1