Skip to content

Commit

Permalink
add workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
abrichr committed Mar 5, 2024
1 parent dff9afe commit 8b6f385
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/docker-build-ec2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Autogenerated via deploy.py, do not edit!

name: Docker Build on EC2 Instance

on:
push:
branches:
- feat/docker

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: SSH and Execute Build on EC2
uses: appleboy/ssh-action@master
with:
command_timeout: "60m"
host: 44.222.213.196
username: ubuntu # Usually 'ubuntu' or 'ec2-user'

key: ${{ secrets.SSH_PRIVATE_KEY }}

script: |
source activate pytorch
nvidia-smi
rm -rf CogVLM || true
git clone https://github.com/OpenAdaptAI/CogVLM
cd CogVLM
git checkout feat/docker
git pull
# Stop and remove existing container if it's running
sudo docker stop cogvlm-container || true
sudo docker rm cogvlm-container || true
# Build the image
sudo nvidia-docker build -t cogvlm . || exit 1
# Run the image
sudo docker run -d -p 6092:6092 --gpus all --name cogvlm-container \
-e OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }} \
cogvlm

0 comments on commit 8b6f385

Please sign in to comment.