Files
zwift-offline/Dockerfile
oldnapalm 41eef4fd77 Deprecate uploading to Garmin Connect
Add note about non-rooted Android 15 and later
2026-03-30 20:08:01 -03:00

17 lines
404 B
Docker

FROM python:3.12-slim
LABEL maintainer="zoffline <zoffline@tutanota.com>"
WORKDIR /usr/src/app/zwift-offline
COPY . .
RUN pip install --no-cache-dir --root-user-action=ignore -r requirements.txt
RUN pip install --no-cache-dir --root-user-action=ignore garth==0.6.3
RUN chmod 777 storage
EXPOSE 443 80 3024/udp 3025 53/udp
VOLUME /usr/src/app/zwift-offline/storage
CMD [ "python", "standalone.py" ]