Skip to content

Commit

Permalink
include . in context
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Lapp committed Feb 20, 2024
1 parent 29797c6 commit 6702455
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
release-job:
name: Build and publish on PyPi
name: Build and publish on PyPi and Docker Hub
runs-on: ubuntu-latest
environment: release
steps:
Expand Down Expand Up @@ -46,6 +46,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
lapp0/outlines-serve:latest
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /outlines
RUN pip install --upgrade pip

# Copy necessary build components
COPY .git ./.git
COPY .git ./.git # required by setuptools-scm
COPY pyproject.toml .
COPY outlines ./outlines

Expand Down

0 comments on commit 6702455

Please sign in to comment.