committed by
GitHub
9 changed files with 51 additions and 6 deletions
@ -0,0 +1,2 @@ |
|||||
|
ignored: |
||||
|
- DL3008 # Pin versions in apt-get install |
||||
@ -1,7 +1,13 @@ |
|||||
{ |
{ |
||||
"recommendations": [ |
"recommendations": [ |
||||
|
"DavidAnson.vscode-markdownlint", |
||||
"editorconfig.editorconfig", |
"editorconfig.editorconfig", |
||||
"esbenp.prettier-vscode", |
"esbenp.prettier-vscode", |
||||
"github.vscode-github-actions" |
"exiasr.hadolint", |
||||
|
"github.vscode-github-actions", |
||||
|
"GitHub.vscode-pull-request-github", |
||||
|
"ms-azuretools.vscode-containers", |
||||
|
"redhat.vscode-yaml", |
||||
|
"yzhang.markdown-all-in-one" |
||||
] |
] |
||||
} |
} |
||||
|
|||||
@ -1,7 +1,18 @@ |
|||||
FROM ubuntu:20.04 |
FROM ubuntu:20.04 |
||||
|
|
||||
LABEL maintainer="LinuxGSM <[email protected]>" |
|
||||
ARG DEBIAN_FRONTEND=noninteractive |
ARG DEBIAN_FRONTEND=noninteractive |
||||
|
ARG BUILD_DATE |
||||
|
ARG VCS_REF |
||||
|
|
||||
|
LABEL maintainer="LinuxGSM <[email protected]>" \ |
||||
|
org.opencontainers.image.title="SteamCMD" \ |
||||
|
org.opencontainers.image.description="SteamCMD headless image for acquiring dedicated server files" \ |
||||
|
org.opencontainers.image.url="https://github.com/GameServerManagers/docker-steamcmd" \ |
||||
|
org.opencontainers.image.source="https://github.com/GameServerManagers/docker-steamcmd" \ |
||||
|
org.opencontainers.image.vendor="GameServerManagers" \ |
||||
|
org.opencontainers.image.licenses="MIT" \ |
||||
|
org.opencontainers.image.created=$BUILD_DATE \ |
||||
|
org.opencontainers.image.revision=$VCS_REF |
||||
|
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] |
SHELL ["/bin/bash", "-o", "pipefail", "-c"] |
||||
|
|
||||
|
|||||
@ -1,7 +1,18 @@ |
|||||
FROM ubuntu:22.04 |
FROM ubuntu:22.04 |
||||
|
|
||||
LABEL maintainer="LinuxGSM <[email protected]>" |
|
||||
ARG DEBIAN_FRONTEND=noninteractive |
ARG DEBIAN_FRONTEND=noninteractive |
||||
|
ARG BUILD_DATE |
||||
|
ARG VCS_REF |
||||
|
|
||||
|
LABEL maintainer="LinuxGSM <[email protected]>" \ |
||||
|
org.opencontainers.image.title="SteamCMD" \ |
||||
|
org.opencontainers.image.description="SteamCMD headless image for acquiring dedicated server files" \ |
||||
|
org.opencontainers.image.url="https://github.com/GameServerManagers/docker-steamcmd" \ |
||||
|
org.opencontainers.image.source="https://github.com/GameServerManagers/docker-steamcmd" \ |
||||
|
org.opencontainers.image.vendor="GameServerManagers" \ |
||||
|
org.opencontainers.image.licenses="MIT" \ |
||||
|
org.opencontainers.image.created=$BUILD_DATE \ |
||||
|
org.opencontainers.image.revision=$VCS_REF |
||||
|
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] |
SHELL ["/bin/bash", "-o", "pipefail", "-c"] |
||||
|
|
||||
|
|||||
@ -1,7 +1,18 @@ |
|||||
FROM ubuntu:24.04 |
FROM ubuntu:24.04 |
||||
|
|
||||
LABEL maintainer="LinuxGSM <[email protected]>" |
|
||||
ARG DEBIAN_FRONTEND=noninteractive |
ARG DEBIAN_FRONTEND=noninteractive |
||||
|
ARG BUILD_DATE |
||||
|
ARG VCS_REF |
||||
|
|
||||
|
LABEL maintainer="LinuxGSM <[email protected]>" \ |
||||
|
org.opencontainers.image.title="SteamCMD" \ |
||||
|
org.opencontainers.image.description="SteamCMD headless image for acquiring dedicated server files" \ |
||||
|
org.opencontainers.image.url="https://github.com/GameServerManagers/docker-steamcmd" \ |
||||
|
org.opencontainers.image.source="https://github.com/GameServerManagers/docker-steamcmd" \ |
||||
|
org.opencontainers.image.vendor="GameServerManagers" \ |
||||
|
org.opencontainers.image.licenses="MIT" \ |
||||
|
org.opencontainers.image.created=$BUILD_DATE \ |
||||
|
org.opencontainers.image.revision=$VCS_REF |
||||
|
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] |
SHELL ["/bin/bash", "-o", "pipefail", "-c"] |
||||
|
|
||||
|
|||||
Loading…
Reference in new issue