Dockerify
Some checks failed
Fly Deploy / Deploy app (push) Failing after 11s

This commit is contained in:
Atridad Lahiji 2024-11-22 16:52:23 -06:00
parent 7249e08f84
commit 1403a756f7
Signed by: atridad
SSH key fingerprint: SHA256:LGomp8Opq0jz+7kbwNcdfTcuaLRb5Nh0k5AchDDb438
4 changed files with 36 additions and 4 deletions

View file

@ -9,7 +9,6 @@ RUN go mod download
COPY . .
# Note: CGO_ENABLED=1 is default, so we don't need to explicitly set it
RUN go build -ldflags="-s -w" -o /go/bin/app
# Final stage

View file

@ -1,5 +1,3 @@
version: "3"
services:
app:
build:
@ -10,4 +8,4 @@ services:
pull_policy: build
environment:
- DISCORD_TOKEN=$DISCORD_TOKEN
- COOLDOWN_ALLOW_LIST=$COOLDOWN_ALLOW_LIST
- COOLDOWN_ALLOW_LIST=$COOLDOWN_ALLOW_LIST

35
docker-compose.yml Normal file
View file

@ -0,0 +1,35 @@
name: Docker Deploy
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Container Registry
uses: docker/login-action@v2
with:
registry: ${{ secrets.REPO_HOST }}
username: ${{ github.repository_owner }}
password: ${{ secrets.DEPLOY_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64
push: true
tags: |
${{ secrets.REPO_HOST }}/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ github.sha }}
${{ secrets.REPO_HOST }}/${{ github.repository_owner }}/${{ github.event.repository.name }}:latest