-
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.
remove debian stretch, add debian bookworm
- Loading branch information
1 parent
e466a8b
commit 2834841
Showing
4 changed files
with
27 additions
and
30 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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM debian:bookworm-slim | ||
|
||
LABEL author="Vilhelm Prytz" maintainer="[email protected]" | ||
|
||
ENV DEBAIN_FRONTEND noninteractive | ||
ENV HOME /server | ||
|
||
RUN apt update && apt upgrade -y | ||
|
||
RUN apt install -y gcc g++ libgcc1 libc++-dev gdb libc6 git wget curl tar zip unzip binutils xz-utils liblzo2-2 cabextract iproute2 net-tools netcat telnet libatomic1 libsdl1.2debian libsdl2-2.0-0 libfontconfig libunwind8 libssl-dev sqlite3 libsqlite3-dev libmariadbclient-dev-compat libduktape205 locales ffmpeg gnupg2 apt-transport-https software-properties-common ca-certificates liblua5.3-0 libz-dev rapidjson-dev tzdata libevent-dev libzip4 | ||
|
||
RUN update-locale lang=en_US.UTF-8 && dpkg-reconfigure --frontend noninteractive locales | ||
|
||
RUN set -x && apt-get update && apt-get upgrade -y && dpkg --add-architecture i386 && apt-get update && apt-get install -y lib32z1 && apt-get clean autoclean && apt-get autoremove -y && rm -rf /var/lib/apt/lists/* && useradd -d /server container | ||
|
||
WORKDIR ${HOME} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"uid": "multi-theft-auto", | ||
"name": "Multi Theft Auto", | ||
"author": "[email protected]", | ||
"docker_image": "wilfreddev/debian:stretch", | ||
"docker_image": "wilfreddev/debian:bookworm", | ||
"command": "./mta-server64", | ||
"default_port": "22003", | ||
"user": "container", | ||
|
@@ -15,7 +15,7 @@ | |
"files": [] | ||
}, | ||
"installation": { | ||
"docker_image": "wilfreddev/debian:stretch", | ||
"docker_image": "wilfreddev/debian:bookworm", | ||
"shell": "/bin/bash", | ||
"script": [ | ||
"apt update -y", | ||
|
@@ -31,4 +31,4 @@ | |
] | ||
}, | ||
"variables": [] | ||
} | ||
} |