fix: push/pull container from memgpt/memgpt-server:latest (#1267)

This commit is contained in:
Sarah Wooders
2024-04-17 16:55:07 -07:00
committed by GitHub
parent 163fddabac
commit ec7cf62d79
2 changed files with 5 additions and 4 deletions

View File

@@ -10,18 +10,19 @@ 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 build . --file Dockerfile --tag memgpt/memgpt-server:$CURRENT_VERSION --tag memgpt/memgpt-server:latest
docker push memgpt/memgpt-server:$CURRENT_VERSION
docker push memgpt/memgpt-server:latest

View File

@@ -13,7 +13,7 @@ services:
- "5432:5432"
memgpt_server:
image: memgpt/memgpt-server:0.3.7
image: memgpt/memgpt-server:latest
depends_on:
- pgvector_db
environment: