-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Base image updated to Debian 11 Download URL has also been normalized to be automatable.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Intermediate staging container | ||
FROM debian:10-slim AS staging | ||
FROM debian:11-slim AS staging | ||
|
||
ARG VERSION="1412" | ||
ARG SHA256="10e6a806e121abb31f3cf46731a6b7e37544d247ea656320b8deffe8e4f10ca2" | ||
ARG URL="https://terraria.org/system/dedicated_servers/archives/000/000/042/original/terraria-server-${VERSION}.zip" | ||
ARG VERSION="1423" | ||
ARG SHA256="12bd93494a31a1487384af1d6e86ee52edce72e2f093e90ee9eaa516eabaa462" | ||
ARG URL="https://terraria.org/api/download/pc-dedicated-server/terraria-server-${VERSION}.zip" | ||
|
||
# Create staging directory | ||
RUN mkdir -p /staging | ||
|
@@ -23,7 +23,7 @@ RUN curl -L $URL -o /tmp/archive_${VERSION}.zip && \ | |
rm -r /staging/${VERSION} | ||
|
||
# Runtime image | ||
FROM debian:10-slim | ||
FROM debian:11-slim | ||
|
||
LABEL maintainer="Alexandre Gauthier <[email protected]>" \ | ||
description="Terraria Server" | ||
|