This repository has been archived on 2025-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
boinc-client/Dockerfile
2024-05-02 10:10:33 +07:00

23 lines
402 B
Docker

FROM fedora:40
LABEL maintainer="TechTransThai" \
description="Fedora image for BOINC client."
# Global environment settings
ENV BOINC_GUI_RPC_PASSWORD="123" \
BOINC_REMOTE_HOST="127.0.0.1" \
BOINC_CMD_LINE_OPTIONS=""
# Copy files
COPY bin/ /usr/bin/
# Configure
WORKDIR /var/lib/boinc
# BOINC RPC port
EXPOSE 31416
# Install
RUN dnf install boinc-client -y
CMD ["start-boinc.sh"]