Functional
All checks were successful
Build and Push / get-steam-app-version (push) Successful in 37s
Build and Push / build (push) Successful in 4m36s
Build and Push / push (push) Successful in 9m35s

This commit is contained in:
William Miceli
2024-08-18 23:24:18 -04:00
parent f11b6d7f41
commit 2e8718adb6
5 changed files with 515 additions and 115 deletions

View File

@@ -17,8 +17,8 @@ RUN dpkg --add-architecture i386 && \
# Add unicode support
RUN locale-gen en_US.UTF-8
ENV LANG 'en_US.UTF-8'
ENV LANGUAGE 'en_US:en'
ENV LANG='en_US.UTF-8'
ENV LANGUAGE='en_US:en'
# Create user for SteamCMD
RUN useradd -m steam
@@ -49,9 +49,9 @@ VOLUME ["/persistent"]
CMD ["/home/steam/satisfactory_server/FactoryServer.sh"]
# Labels
ARG DRONE_BUILD_STARTED
ARG DRONE_COMMIT_SHA
ARG CI_BUILD_STARTED
ARG COMMIT_SHA
LABEL org.opencontainers.image.authors="William Miceli; https://github.com/WilliamMiceli; https://williammiceli.me"
LABEL org.opencontainers.image.created=$DRONE_BUILD_STARTED
LABEL org.opencontainers.image.revision=$DRONE_COMMIT_SHA
LABEL org.opencontainers.image.created=$CI_BUILD_STARTED
LABEL org.opencontainers.image.revision=$COMMIT_SHA
LABEL org.opencontainers.image.source=https://github.com/WilliamMiceli/Docker_Satisfactory-Server