boinc-client/Dockerfile

25 lines
447 B
Docker
Raw Normal View History

2024-05-30 02:32:32 +00:00
FROM registry.fedoraproject.org/fedora:40
2024-05-02 03:10:33 +00:00
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
2024-05-30 02:32:32 +00:00
RUN dnf clean all
2024-05-02 03:10:33 +00:00
CMD ["start-boinc.sh"]