| FROM alpine:latest |
|
|
| WORKDIR /app |
|
|
| RUN apk --no-cache add ca-certificates wget python3 py3-pip curl jq tar bash |
|
|
| RUN wget https://github.com/synctv-org/synctv/releases/download/v0.9.12/synctv-linux-amd64 -O synctv |
|
|
| RUN chmod +x synctv |
|
|
| RUN mkdir -p /app/data |
| RUN chmod -R 777 /app/data |
|
|
| ENV VIRTUAL_ENV=/opt/venv |
| RUN python3 -m venv $VIRTUAL_ENV |
| ENV PATH="$VIRTUAL_ENV/bin:$PATH" |
| RUN pip install --no-cache-dir huggingface_hub |
|
|
| COPY sync_data.sh /app/ |
| RUN chmod +x /app/sync_data.sh |
|
|
| CMD ["/bin/bash", "-c", "/app/sync_data.sh"] |