Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
keshon committed Aug 30, 2024
1 parent 28f3abd commit f12d38f
Show file tree
Hide file tree
Showing 6 changed files with 130 additions and 181 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# First stage: build the Go application
FROM golang:1.21.1-alpine3.17 AS build
FROM golang:1.23.0-alpine3.20 AS build

RUN apk add --no-cache build-base
ADD src /usr/project
Expand All @@ -17,7 +17,7 @@ RUN GO_VERSION=$(go version | awk '{print $3}') && \
rm -rf /usr/share/man

# Second stage: create the final image
FROM alpine:3.17
FROM alpine:3.20

RUN apk update && \
apk add --no-cache ffmpeg
Expand Down
4 changes: 2 additions & 2 deletions docker/build-and-deploy.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/bash

if [ "$1" == "traefik" ]; then
DOCKER_COMPOSE_COMMAND="docker-compose -f docker-compose.yml -f docker-compose.traefik.yml up -d"
DOCKER_COMPOSE_COMMAND="docker compose -f docker-compose.yml -f docker-compose.traefik.yml up -d"
else
DOCKER_COMPOSE_COMMAND="docker-compose -f docker-compose.yml up -d"
DOCKER_COMPOSE_COMMAND="docker compose -f docker-compose.yml up -d"
fi

if [ -f .env ]; then
Expand Down
70 changes: 35 additions & 35 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,68 +1,68 @@
module github.com/keshon/melodix-player

go 1.21.1
go 1.22

toolchain go1.22.2
toolchain go1.22.3

require (
github.com/bwmarrin/discordgo v0.27.1
github.com/gin-gonic/gin v1.9.1
github.com/Clinet/discordgo-embed v0.0.0-20220113222025-bafe0c917646
github.com/bwmarrin/discordgo v0.28.1
github.com/gin-gonic/gin v1.10.0
github.com/gookit/slog v0.5.6
github.com/joho/godotenv v1.5.1
github.com/keshon/melodix-player/mods/about v0.0.0-20240422055726-a537e16fbc39
github.com/keshon/melodix-player/mods/music v0.0.0-20240422055726-a537e16fbc39
gorm.io/driver/sqlite v1.5.5
gorm.io/gorm v1.25.7
github.com/keshon/melodix-player/mods/about v0.0.0-20240731075656-28f3abdb455b
github.com/keshon/melodix-player/mods/music v0.0.0-20240731075656-28f3abdb455b
gorm.io/driver/sqlite v1.5.6
gorm.io/gorm v1.25.11
)

require (
github.com/Clinet/discordgo-embed v0.0.0-20220113222025-bafe0c917646 // indirect
github.com/PuerkitoBio/goquery v1.9.2 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/bitly/go-simplejson v0.5.1 // indirect
github.com/dlclark/regexp2 v1.11.0 // indirect
github.com/dop251/goja v0.0.0-20240220182346-e401ed450204 // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
github.com/google/pprof v0.0.0-20240227163752-401108e1b7e7 // indirect
github.com/bytedance/sonic/loader v0.2.0 // indirect
github.com/cloudwego/base64x v0.1.4 // indirect
github.com/cloudwego/iasm v0.2.0 // indirect
github.com/dlclark/regexp2 v1.11.4 // indirect
github.com/dop251/goja v0.0.0-20240828124009-016eb7256539 // indirect
github.com/go-sourcemap/sourcemap v2.1.4+incompatible // indirect
github.com/google/pprof v0.0.0-20240829160300-da1f7e9f2b25 // indirect
github.com/jonas747/ogg v0.0.0-20161220051205-b4f6f4cf3757 // indirect
github.com/kkdai/youtube/v2 v2.10.1 // indirect
)

require (
github.com/bytedance/sonic v1.9.1 // indirect
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
github.com/bytedance/sonic v1.12.2 // indirect
github.com/gabriel-vasile/mimetype v1.4.5 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.14.0 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/go-playground/validator/v10 v10.22.0 // indirect
github.com/goccy/go-json v0.10.3 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/gookit/color v1.5.4 // indirect
github.com/gookit/goutil v0.6.15 // indirect
github.com/gookit/goutil v0.6.16 // indirect
github.com/gookit/gsr v0.1.0 // indirect
github.com/gorilla/websocket v1.5.1 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
github.com/leodido/go-urn v1.2.4 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
github.com/robfig/cron/v3 v3.0.1
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.11 // indirect
github.com/ugorji/go/codec v1.2.12 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
golang.org/x/arch v0.3.0 // indirect
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/net v0.24.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/protobuf v1.30.0 // indirect
golang.org/x/arch v0.9.0 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/net v0.28.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.24.0 // indirect
golang.org/x/text v0.17.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit f12d38f

Please sign in to comment.