18 lines
466 B
Docker
18 lines
466 B
Docker
|
FROM debian:bullseye-slim
|
||
|
|
||
|
SHELL ["/bin/bash", "-c"]
|
||
|
|
||
|
# Likely to match the first regular user:group created on the host.
|
||
|
RUN addgroup --gid 1000 user; \
|
||
|
adduser --disabled-password --gecos '' --uid 1000 --gid 1000 user;
|
||
|
|
||
|
USER user
|
||
|
|
||
|
STOPSIGNAL SIGINT
|
||
|
|
||
|
# Docker refuses to copy the source directory here, so read it as "nimbus-eth1/*"
|
||
|
COPY "nimbus-eth1" "/home/user/nimbus-eth1/"
|
||
|
WORKDIR "/home/user/nimbus-eth1/"
|
||
|
ENTRYPOINT ["/home/user/nimbus-eth1/build/nimbus"]
|
||
|
|