Skip to content

Commit d82c4a6

Browse files
committed
build: fix support of 32-bits
1 parent 095f1e9 commit d82c4a6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ ARG PYTHON="python:3.7-alpine3.17"
33
FROM ${PYTHON} as build
44
ENV SYNCPLAY="1.6.9"
55
RUN apk add gcc musl-dev libffi-dev
6+
RUN if [ "$(getconf LONG_BIT)" == "32" ]; then apk add cargo openssl-dev; fi
67
RUN wget https://github.com/Syncplay/syncplay/archive/refs/tags/v${SYNCPLAY}.tar.gz && \
78
tar xf v${SYNCPLAY}.tar.gz
89
WORKDIR ./syncplay-${SYNCPLAY}/

0 commit comments

Comments
 (0)