From 8fe0f8bda8b781f6f579ec0b45c73e3ab98aa4db Mon Sep 17 00:00:00 2001 From: tuxuser <462620+tuxuser@users.noreply.github.com> Date: Sat, 25 Nov 2023 22:54:51 +0100 Subject: [PATCH] docker: Add cargo as build dependency --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1e63947..132d30a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ ENV LANG C.UTF-8 COPY . /src/xbox-webapi # install the C compiler -RUN apk add --no-cache jq gcc musl-dev libffi-dev openssl-dev +RUN apk add --no-cache jq gcc musl-dev libffi-dev openssl-dev cargo # instead of installing, create a wheel RUN pip wheel --wheel-dir=/root/wheels /src/xbox-webapi