We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 095f1e9 commit d82c4a6Copy full SHA for d82c4a6
Dockerfile
@@ -3,6 +3,7 @@ ARG PYTHON="python:3.7-alpine3.17"
3
FROM ${PYTHON} as build
4
ENV SYNCPLAY="1.6.9"
5
RUN apk add gcc musl-dev libffi-dev
6
+RUN if [ "$(getconf LONG_BIT)" == "32" ]; then apk add cargo openssl-dev; fi
7
RUN wget https://github.com/Syncplay/syncplay/archive/refs/tags/v${SYNCPLAY}.tar.gz && \
8
tar xf v${SYNCPLAY}.tar.gz
9
WORKDIR ./syncplay-${SYNCPLAY}/
0 commit comments