Skip to content

Commit a85f129

Browse files
committed
v1.0.2
1 parent 48ad92a commit a85f129

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM sinusbot/docker:1.0.2-amd64-discord
1+
FROM sinusbot/docker:1.0.2-discord
22

33
LABEL description="SinusBot - TeamSpeak 3 and Discord music bot."
4-
LABEL version="1.0.2-amd64"
4+
LABEL version="1.0.2"
55

66
# Install dependencies and clean up afterwards
77
RUN apt-get update && \

discord/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:buster-slim
22

33
LABEL description="SinusBot - Discord only image"
4-
LABEL version="1.0.2-amd64"
4+
LABEL version="1.0.2"
55

66
# Install dependencies and clean up afterwards
77
RUN apt-get update && \

discord/install.sh

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ case "$1" in
1818
;;
1919
"text-to-speech")
2020
echo "Installing Text-to-Speech..."
21+
mkdir -p tts
2122
cd tts
2223
mkdir tmp
2324
cd tmp

release_as_latest.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ read -p "Build images? [Y/n] " -n 1 -r
5050
echo
5151
if [[ $REPLY =~ ^([Yy]| ) ]] || [[ -z $REPLY ]]; then
5252
docker pull debian:buster-slim
53-
docker build -t "$IMAGE":discord discord
53+
docker build --platform linux/amd64 -t "$IMAGE":discord discord
5454
docker tag "$IMAGE":discord "$IMAGE":"$VERSION"-discord
55-
docker build -t "$IMAGE":latest .
55+
docker build --platform linux/amd64 -t "$IMAGE":latest .
5656
docker tag "$IMAGE":latest "$IMAGE":"$VERSION"
5757

5858
read -p "Push the builds to docker? (requires docker login) [Y/n] " -n 1 -r

release_version.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ read -p "Build images? [Y/n] " -n 1 -r
5050
echo
5151
if [[ $REPLY =~ ^([Yy]| ) ]] || [[ -z $REPLY ]]; then
5252
docker pull debian:buster-slim
53-
docker build -t "$IMAGE":"$VERSION"-discord discord
54-
docker build -t "$IMAGE":"$VERSION" .
53+
docker build --platform linux/amd64 -t "$IMAGE":"$VERSION"-discord discord
54+
docker build --platform linux/amd64 -t "$IMAGE":"$VERSION" .
5555

5656
read -p "Push the builds to docker? (requires docker login) [Y/n] " -n 1 -r
5757
echo

0 commit comments

Comments
 (0)