Skip to content
Merged
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
2 changes: 1 addition & 1 deletion apps/steamcmd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
ARG VERSION
ARG REVISION

FROM ghcr.io/rtrox/ubuntu:jammy-20260322.1 as base
FROM ghcr.io/rtrox/ubuntu:jammy-20260410 as base

Check warning on line 4 in apps/steamcmd/Dockerfile

View workflow job for this annotation

GitHub Actions / build-images / Build/Test steamcmd (linux/amd64)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

LABEL maintainer="rtrox <rtrox@noreply.github.com"
LABEL org.label-schema.name="rtrox/steamcmd"
LABEL org.label-schema.description="Base SteamCMD Image customed for rtrox images."
LABEL org.label-schema.vendor="rtrox"
LABEL org.label-schema.url="https://github.com/rtrox/containers"
LABEL org.label-schema.version=$VERSION

Check warning on line 11 in apps/steamcmd/Dockerfile

View workflow job for this annotation

GitHub Actions / build-images / Build/Test steamcmd (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$VERSION' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.label-schema.vcs-url="https://github.com/rtrox/containers"
LABEL org.label-schema.vcs-ref=$REVISION

Check warning on line 13 in apps/steamcmd/Dockerfile

View workflow job for this annotation

GitHub Actions / build-images / Build/Test steamcmd (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$REVISION' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

FROM base as builder

Check warning on line 15 in apps/steamcmd/Dockerfile

View workflow job for this annotation

GitHub Actions / build-images / Build/Test steamcmd (linux/amd64)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

RUN echo steam steam/question select "I AGREE" | debconf-set-selections \
&& echo steam steam/license note '' | debconf-set-selections

ENV USER rtrox

Check warning on line 22 in apps/steamcmd/Dockerfile

View workflow job for this annotation

GitHub Actions / build-images / Build/Test steamcmd (linux/amd64)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV HOMEDIR "/home/${USER}"

Check warning on line 23 in apps/steamcmd/Dockerfile

View workflow job for this annotation

GitHub Actions / build-images / Build/Test steamcmd (linux/amd64)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV STEAMCMD_DIR "${HOMEDIR}/steamcmd"

Check warning on line 24 in apps/steamcmd/Dockerfile

View workflow job for this annotation

GitHub Actions / build-images / Build/Test steamcmd (linux/amd64)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

RUN apt-get update -y && \
apt-get install -y \
Expand Down
Loading