Skip to content

Commit a232f70

Browse files
committed
fix: tls error on 32-bit arch
1 parent a15ba94 commit a232f70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN mkdir $(basename /usr/local/lib/python3.*/) && cd ./python3.*/ && \
1919
COPY ./boot.py /release/bin/syncplay
2020

2121
FROM ${PYTHON}
22-
RUN apk add --no-cache libffi openssl
22+
RUN sh -c '[ $(getconf LONG_BIT) -eq 64 ] || apk add --no-cache libgcc'
2323
COPY --from=syncplay /release/ /usr/
2424
ENV PYTHONUNBUFFERED=1
2525
EXPOSE 8999

0 commit comments

Comments
 (0)