Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve invalid format error during build -- Ensure all repository staging names are lowercase #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:xenial AS Ubuntu_SteamCMD
FROM ubuntu:xenial AS ubuntu_steamcmd

# Get Package Dependencies, Accept ToS with Steam Dependency, clear appt cache
RUN dpkg --add-architecture i386 && \
Expand All @@ -24,7 +24,7 @@ RUN useradd -m steam
USER steam
WORKDIR /home/steam

FROM Ubuntu_SteamCMD AS SteamCMD_HLDS
FROM ubuntu_steamcmd AS steamcmd_hlds

RUN mkdir -p /home/steam/hlds/steamapps/

Expand All @@ -45,7 +45,7 @@ RUN mkdir -p ~/.steam/sdk32 && ln -s ~/.steam/steamcmd/linux32/steamclient.so ~/

COPY scripts/*.sh /home/steam/hlds/

FROM SteamCMD_HLDS AS HLDS_NS
FROM steamcmd_hlds AS hlds_ns

ARG NS_URL='https://github.com/ENSL/NS/releases/download/v3.2.2/ns_v322_full.zip'

Expand All @@ -60,7 +60,7 @@ RUN mv /home/steam/hlds/libstdc++* /home/steam/ && \
unzip ns_*.zip && \
cp /home/steam/hlds/ns/liblist.gam /home/steam/hlds/ns/liblist.bak

FROM HLDS_NS AS HLDS_ENSL
FROM hlds_ns AS hlds_ensl

ARG PLUGIN_URL='https://github.com/ENSL/ensl-plugin/releases/download/1.4-extra/ENSL_SrvPkg-1.4-extra.zip'

Expand Down