Skip to content

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Mar 21, 2023
1 parent 48ad92a commit a85f129
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM sinusbot/docker:1.0.2-amd64-discord
FROM sinusbot/docker:1.0.2-discord

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

# Install dependencies and clean up afterwards
RUN apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion discord/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM debian:buster-slim

LABEL description="SinusBot - Discord only image"
LABEL version="1.0.2-amd64"
LABEL version="1.0.2"

# Install dependencies and clean up afterwards
RUN apt-get update && \
Expand Down
1 change: 1 addition & 0 deletions discord/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ case "$1" in
;;
"text-to-speech")
echo "Installing Text-to-Speech..."
mkdir -p tts
cd tts
mkdir tmp
cd tmp
Expand Down
4 changes: 2 additions & 2 deletions release_as_latest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ read -p "Build images? [Y/n] " -n 1 -r
echo
if [[ $REPLY =~ ^([Yy]| ) ]] || [[ -z $REPLY ]]; then
docker pull debian:buster-slim
docker build -t "$IMAGE":discord discord
docker build --platform linux/amd64 -t "$IMAGE":discord discord
docker tag "$IMAGE":discord "$IMAGE":"$VERSION"-discord
docker build -t "$IMAGE":latest .
docker build --platform linux/amd64 -t "$IMAGE":latest .
docker tag "$IMAGE":latest "$IMAGE":"$VERSION"

read -p "Push the builds to docker? (requires docker login) [Y/n] " -n 1 -r
Expand Down
4 changes: 2 additions & 2 deletions release_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ read -p "Build images? [Y/n] " -n 1 -r
echo
if [[ $REPLY =~ ^([Yy]| ) ]] || [[ -z $REPLY ]]; then
docker pull debian:buster-slim
docker build -t "$IMAGE":"$VERSION"-discord discord
docker build -t "$IMAGE":"$VERSION" .
docker build --platform linux/amd64 -t "$IMAGE":"$VERSION"-discord discord
docker build --platform linux/amd64 -t "$IMAGE":"$VERSION" .

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

0 comments on commit a85f129

Please sign in to comment.