initial commit

This commit is contained in:
2026-07-13 10:21:07 -03:00
commit e176a45d4b
4 changed files with 84 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y \
ca-certificates \
curl \
lib32gcc-s1 \
libssl3 \
xvfb \
winbind \
cabextract \
xz-utils && \
rm -rf /var/lib/apt/lists/*
RUN useradd -m -s /bin/bash steam
USER steam
WORKDIR /home/steam
# SteamCMD
RUN mkdir -p /home/steam/steamcmd && \
cd /home/steam/steamcmd && \
curl -sqL "https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz" \
| tar zxvf -
ENV STEAMCMD_DIR=/home/steam/steamcmd
ENV ACEVO_INSTALL_DIR=/home/steam/acevo-server
RUN mkdir -p ${ACEVO_INSTALL_DIR}
# Copy AC Evo Server Manager (your repo)
COPY . /app
WORKDIR /app
COPY entrypoint.sh /home/steam/entrypoint.sh
RUN chmod +x /home/steam/entrypoint.sh
ENTRYPOINT ["/home/steam/entrypoint.sh"]