From 3866e16c9cb5a9d4aebee75bca44b6d09e3b2a68 Mon Sep 17 00:00:00 2001 From: "Michael (Parker) Parker" Date: Fri, 6 Sep 2019 11:25:47 -0400 Subject: [PATCH] updating to newer base images and updating the entrypoint --- Dockerfile | 4 ++-- entrypoint.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f98cf18..ad2a345 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM ubuntu:16.04 +FROM ubuntu:18.04 MAINTAINER Isaac A., RUN apt update \ && apt upgrade -y \ && apt install -y lib32gcc1 lib32stdc++6 unzip curl iproute2 libgdiplus \ - && curl -sL https://deb.nodesource.com/setup_6.x | bash - \ + && curl -sL https://deb.nodesource.com/setup_10.x | bash - \ && apt install -y nodejs \ && mkdir /node_modules \ && npm install --prefix / ws \ diff --git a/entrypoint.sh b/entrypoint.sh index 33a9054..6fd15e2 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -14,7 +14,7 @@ echo ":/home/container$ ${MODIFIED_STARTUP}" # OxideMod has been replaced with uMod if [ -f OXIDE_FLAG ] || [ "${OXIDE}" = 1 ] || [ "${UMOD}" = 1 ]; then echo "Updating uMod..." - curl -sSL "https://umod.org/games/rust/download" > umod.zip + curl -sSL "https://umod.org/games/rust/download/develop" > umod.zip unzip -o -q umod.zip rm umod.zip echo "Done updating uMod!"