Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
IraqLobsterDE authored Dec 9, 2023
1 parent 6be7704 commit 42bc107
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ RUN apt update && apt upgrade -y
# Install build packages
RUN apt -y install git build-essential gcc zlib1g-dev libssl-dev openssl cmake libcap2-bin

RUN setcap 'cap_net_bind_service=+ep' AuthServer

# Build the DLU Server
RUN git clone --recursive https://github.com/DarkflameUniverse/DarkflameServer.git
RUN mkdir LegoFiles
Expand All @@ -18,6 +16,8 @@ RUN ./build.sh -j$(grep -c '^processor' /proc/cpuinfo)
RUN apt -y remove git gcc zlib1g-dev libssl-dev cmake
RUN apt -y autoremove

RUN setcap 'cap_net_bind_service=+ep' build/AuthServer

# Set the start script as entrypoint
COPY /start.sh /DarkflameServer/start.sh
ENTRYPOINT [ "/bin/bash", "/DarkflameServer/start.sh" ]

0 comments on commit 42bc107

Please sign in to comment.