Skip to content

Commit

Permalink
Add Dockerfile and compose.yaml (#335)
Browse files Browse the repository at this point in the history
This PR adds Dockerfile, to run Octobot within a Docker container, and
compose.yaml, to run the Octobot container along with any services that
the user may require.

---------

Signed-off-by: Octol1ttle <[email protected]>
Signed-off-by: mctaylors <[email protected]>
Co-authored-by: mctaylors <[email protected]>
  • Loading branch information
Octol1ttle and mctaylors committed Oct 27, 2024
1 parent 9e44d49 commit 9cc4614
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 11 deletions.
40 changes: 29 additions & 11 deletions .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,41 @@ on:
branches: [ "master" ]

jobs:
upload-solution:
name: Upload Octobot to production
upload-container:
name: Upload Octobot Docker container
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
packages: write
environment: production

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Publish solution
run: dotnet publish $PUBLISH_FLAGS
- name: Build container
run: docker buildx build --build-arg PUBLISH_OPTIONS="$PUBLISH_OPTIONS" -t $IMAGE_NAME -f Dockerfile .
shell: bash
env:
PUBLISH_OPTIONS: ${{vars.PUBLISH_OPTIONS}}
IMAGE_NAME: ${{vars.IMAGE_NAME}}

- name: Push container
run: |
echo $CR_PAT | docker login ghcr.io -u $REPO_OWNER --password-stdin
docker push ghcr.io/$NAMESPACE/$IMAGE_NAME:latest
shell: bash
env:
PUBLISH_FLAGS: ${{vars.PUBLISH_FLAGS}}
CR_PAT: ${{secrets.GITHUB_TOKEN}}
NAMESPACE: ${{vars.NAMESPACE}}
IMAGE_NAME: ${{vars.IMAGE_NAME}}
REPO_OWNER: ${{github.repository_owner}}

upload-solution:
name: Upload Octobot to production
runs-on: ubuntu-latest
environment: production

steps:
- name: Setup SSH key
run: |
install -m 600 -D /dev/null ~/.ssh/id_ed25519
Expand All @@ -44,15 +62,15 @@ jobs:
SSH_HOST: ${{secrets.SSH_HOST}}
STOP_COMMAND: ${{vars.STOP_COMMAND}}

- name: Upload published solution
- name: Update Docker image
run: |
scp -r $UPLOAD_FROM $SSH_USER@$SSH_HOST:$UPLOAD_TO
ssh $SSH_USER@$SSH_HOST docker pull ghcr.io/$NAMESPACE/$IMAGE_NAME:latest
shell: bash
env:
SSH_USER: ${{secrets.SSH_USER}}
SSH_HOST: ${{secrets.SSH_HOST}}
UPLOAD_FROM: ${{vars.UPLOAD_FROM}}
UPLOAD_TO: ${{vars.UPLOAD_TO}}
NAMESPACE: ${{vars.NAMESPACE}}
IMAGE_NAME: ${{vars.IMAGE_NAME}}

- name: Start new instance
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ riderModule.iml
/.vs/
GuildData/
Logs/
compose.yaml
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0@sha256:35792ea4ad1db051981f62b313f1be3b46b1f45cadbaa3c288cd0d3056eefb83 AS build-env
WORKDIR /Octobot

# Copy everything
COPY . ./
# Load build argument with publish options
ARG PUBLISH_OPTIONS="-c Release"
# Build and publish a release
RUN dotnet publish ./TeamOctolings.Octobot $PUBLISH_OPTIONS -o out

# Build runtime image
FROM mcr.microsoft.com/dotnet/runtime:8.0@sha256:a335dccd3231f7f9e2122691b21c634f96e187d3840c8b7dbad61ee09500e408
WORKDIR /Octobot
COPY --from=build-env /Octobot/out .
ENTRYPOINT ["./TeamOctolings.Octobot"]
17 changes: 17 additions & 0 deletions compose.example.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
services:
octobot:
container_name: octobot
build:
context: .
args:
- PUBLISH_OPTIONS
environment:
- BOT_TOKEN
volumes:
- guild-data:/Octobot/GuildData
- logs:/Octobot/Logs
restart: unless-stopped

volumes:
guild-data:
logs:

0 comments on commit 9cc4614

Please sign in to comment.