diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml new file mode 100644 index 00000000..3c344ad9 --- /dev/null +++ b/.github/workflows/container.yml @@ -0,0 +1,61 @@ +name: Container + +on: + push: + branches: [ main ] + tags: + - "*" + pull_request: + branches: [ main ] + workflow_dispatch: + workflow_call: + inputs: + version: + description: Version + required: false + +jobs: + + container: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Build container + uses: docker/build-push-action@v4 + with: + context: . + + push: + if: github.event_name != 'pull_request' + needs: + - container + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Determine Version + id: version + run: echo "::set-output name=version::$(git describe --always --tags --dirty)" + - name: Build and push + id: push + uses: docker/build-push-action@v4 + with: + context: . + push: true + platforms: linux/amd64, linux/arm64 + tags: ghcr.io/fal-ai/fal:latest, ghcr.io/fal-ai/fal:${{ github.event.inputs.version || steps.version.outputs.version }} + - name: Determine digest + run: echo ${{ steps.push.outputs.digest }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ad5f1286..0904644e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -104,3 +104,8 @@ jobs: title: Bump the pyproject.toml version for fal base: main token: ${{ secrets.RELEASER_GITHUB_PAT }} + + release-container: + uses: ./.github/workflows/container.yml + with: + input: ${{ github.event.inputs.version }} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..aecfe6b3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.11-slim as build +RUN ln -s /usr/bin/python3 /tmp/python3 +RUN python3 -m venv /opt/fal +COPY projects /src +RUN /opt/fal/bin/pip install /src/fal + +FROM gcr.io/distroless/python3-debian12 +COPY --from=build /tmp /usr/local/bin +COPY --from=build /opt/fal /opt/fal +ENTRYPOINT ["/opt/fal/bin/fal"]