From 299cbcfcee733d742c5e866f714f5a7cae536f64 Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Mon, 3 Jun 2024 17:11:20 -0600 Subject: [PATCH] Bump golang --- Dockerfile | 2 +- docker-compose.yml | 20 -------------------- 2 files changed, 1 insertion(+), 21 deletions(-) delete mode 100644 docker-compose.yml 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