feat: create docker-image.yml (#1181)

This commit is contained in:
Sarah Wooders
2024-03-21 15:58:37 -07:00
committed by GitHub
parent 12d075d9b9
commit 7c80e800c3

27
.github/workflows/docker-image.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Docker Image CI
on:
release:
types: [published]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: actions/checkout@v3
- name: Build and push the Docker image
run: |
# Extract the version number from pyproject.toml using awk
CURRENT_VERSION=$(awk -F '"' '/version =/ { print $2 }' pyproject.toml | head -n 1)
docker build . --file Dockerfile --tag memgpt/memgpt-server:$CURRENT_VERSION
docker push memgpt/memgpt-server:$CURRENT_VERSION