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.7.0
1 parent db196de commit 636f9ffCopy full SHA for 636f9ff
Dockerfile
@@ -1,11 +1,10 @@
1
ARG PYTHON="python:3.9-alpine3.17"
2
3
FROM ${PYTHON} as build
4
-ENV SYNCPLAY="1.7.0-RC1"
+ENV SYNCPLAY="1.7.0"
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/${SYNCPLAY}.tar.gz && \
8
- tar xf ${SYNCPLAY}.tar.gz
+RUN wget https://github.com/Syncplay/syncplay/archive/v${SYNCPLAY}.tar.gz -O- | tar xz
9
WORKDIR ./syncplay-${SYNCPLAY}/
10
RUN cat /dev/null > requirements_gui.txt
11
RUN SNAPCRAFT_PART_BUILD=1 pip wheel --wheel-dir /wheels/ ./
0 commit comments