run #1
This commit is contained in:
21
Dockerfile
21
Dockerfile
@@ -1,4 +1,17 @@
|
|||||||
FROM docker/whalesay:latest
|
FROM ghcr.io/hassio-addons/debian-base:7.3.1
|
||||||
LABEL Name=dontstopfolding Version=0.0.1
|
RUN \
|
||||||
RUN apt-get -y update && apt-get install -y fortunes
|
echo "deb http://deb.debian.org/debian bullseye main" > /etc/apt/sources.list && \
|
||||||
CMD ["sh", "-c", "/usr/games/fortune -a | cowsay"]
|
apt-get update && \
|
||||||
|
apt-get install -y --no-install-recommends \
|
||||||
|
curl \
|
||||||
|
ca-certificates && \
|
||||||
|
curl -sSL https://download.foldingathome.org/releases/public/fah-client/debian-10-64bit/release/fah-client_8.4.9_amd64.deb -o fahclient.deb && \
|
||||||
|
ls -l /fahclient.deb && \
|
||||||
|
dpkg -i fahclient.deb || true && \
|
||||||
|
apt-get install -f -y && \
|
||||||
|
rm fahclient.deb && \
|
||||||
|
apt-get clean && \
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
COPY rootfs /
|
||||||
|
EXPOSE 7396
|
||||||
|
CMD [ "/run.sh" ]
|
||||||
Reference in New Issue
Block a user