From f1e766d86a9f38b674162d1815c8c9615ae53f01 Mon Sep 17 00:00:00 2001 From: Loup <90267658+Loup-Garou911XD@users.noreply.github.com> Date: Thu, 13 Jun 2024 18:32:42 +0530 Subject: [PATCH] Update Dockerfile --- config/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/docker/Dockerfile b/config/docker/Dockerfile index f6d54d7c..70baa30d 100644 --- a/config/docker/Dockerfile +++ b/config/docker/Dockerfile @@ -80,7 +80,7 @@ RUN apt-get update -y && \ libopenal-dev; \ fi && \ rm -rf /var/lib/apt/lists/* && \ - dbus-uuidgen > /etc/machine-id + python3 -c 'import uuid; print(uuid.uuid4()) > /etc/machine-id' # Copy the compiled application from the builder stage COPY --from=builder /ballistica_cmake \ @@ -94,4 +94,4 @@ RUN ln -s ballisticakit* run EXPOSE 43210/udp # Set the default command to run the application -CMD [ "./run" ] \ No newline at end of file +CMD [ "./run" ]