Skip to content

Commit

Permalink
ensure all repository staging names are lowercase
Browse files Browse the repository at this point in the history
resolves ENSL#8
  • Loading branch information
brcaswell committed Aug 12, 2022
1 parent b36c4cf commit cc11719
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit cc11719

Please sign in to comment.