diff --git a/Dockerfile b/Dockerfile index 19e04f1..c76a442 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.0 as build +FROM golang:1.22.3 as build WORKDIR /app diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 6806c07..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,20 +0,0 @@ -version: "3" - -services: - app: - build: - context: . - dockerfile: Dockerfile - image: your-app-image:latest - command: ["/app"] - pull_policy: build - ports: - - "3001:3000" - environment: - - DISCORD_TOKEN=$DISCORD_TOKEN - - COOLDOWN_ALLOW_LIST=$COOLDOWN_ALLOW_LIST - -networks: - default: - external: true - name: nginx_default