mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
20 lines
655 B
Docker
20 lines
655 B
Docker
FROM debian:stable-slim
|
|
|
|
# SIGUSR1 causes veloren-server-cli to initiate a graceful shutdown
|
|
LABEL com.centurylinklabs.watchtower.stop-signal="SIGUSR1"
|
|
|
|
ARG PROJECTNAME=server-cli
|
|
|
|
# librust-backtrace+libbacktrace-dev = backtrace functionality
|
|
RUN apt-get update; export DEBIAN_FRONTEND=noninteractive; \
|
|
apt-get install -y --no-install-recommends --assume-yes \
|
|
librust-backtrace+libbacktrace-dev; \
|
|
rm -rf /var/lib/apt/lists/*;
|
|
|
|
COPY ./veloren-server-cli /opt/veloren-server-cli
|
|
COPY ./assets/common /opt/assets/common
|
|
COPY ./assets/world /opt/assets/world
|
|
|
|
WORKDIR /opt
|
|
CMD [ "sh", "-c", "RUST_BACKTRACE=1 /opt/veloren-server-cli -b" ]
|