mirror of
https://github.com/Fishwaldo/DockerFiles.git
synced 2025-03-15 19:31:39 +00:00
Update with a distcc worker
This commit is contained in:
parent
92790385e0
commit
7ee2152094
1 changed files with 19 additions and 0 deletions
19
distcc-buster-worker/Dockerfile
Normal file
19
distcc-buster-worker/Dockerfile
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
FROM debian:buster-slim
|
||||||
|
|
||||||
|
RUN apt -y update && apt -y upgrade && apt -y install joe mc build-essential distcc
|
||||||
|
|
||||||
|
ENV HOME=/home/distcc
|
||||||
|
RUN useradd -s /bin/bash distcc
|
||||||
|
EXPOSE 3632/tcp 3633/tcp
|
||||||
|
|
||||||
|
ENTRYPOINT [\
|
||||||
|
"distccd", \
|
||||||
|
"--daemon", \
|
||||||
|
"--no-detach", \
|
||||||
|
"--user", "distcc", \
|
||||||
|
"--port", "3632", \
|
||||||
|
"--stats", \
|
||||||
|
"--stats-port", "3633", \
|
||||||
|
"--log-stderr", \
|
||||||
|
"--listen", "0.0.0.0"\
|
||||||
|
]
|
Loading…
Add table
Reference in a new issue