Merge pull request #2 from sndrtj/master
Fix permission error and allow interactive mode in entrypoint.sh
This commit is contained in:
commit
8074f0f173
|
@ -18,7 +18,9 @@ RUN useradd --system folding && \
|
|||
apt-get autoremove --yes && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY entrypoint.sh /opt/fahclient
|
||||
COPY --chown=folding:folding entrypoint.sh /opt/fahclient
|
||||
|
||||
RUN chmod +x /opt/fahclient/entrypoint.sh
|
||||
|
||||
ENV USER "Anonymous"
|
||||
ENV TEAM "0"
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
/opt/fahclient/FAHClient \
|
||||
--user=${USER} \
|
||||
--team=${TEAM} \
|
||||
--passkey=${PASSKEY} \
|
||||
--gpu=${ENABLE_GPU} \
|
||||
--smp=${ENABLE_SMP} \
|
||||
--user="${USER}" \
|
||||
--team="${TEAM}" \
|
||||
--passkey="${PASSKEY}" \
|
||||
--gpu="${ENABLE_GPU}" \
|
||||
--smp="${ENABLE_SMP}" \
|
||||
--power=full \
|
||||
--gui-enabled=false \
|
||||
${@}
|
||||
"${@}"
|
||||
|
|
Loading…
Reference in a new issue