Skip to content

Commit

Permalink
docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
trueai-org committed Jul 8, 2024
1 parent 516eb14 commit 64d3ad9
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/docker-aliyun-midjourney-proxy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Alibaba Cloud Registry Docker Image CI

on:
release:
types: [published]

jobs:
push_to_acr:
name: Push Docker image to Alibaba Cloud Registry
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4

- name: Log in to Alibaba Cloud Registry
run: |
echo "${{ secrets.ACR_PASSWORD }}" | docker login --username="${{ secrets.ACR_USERNAME }}" --password-stdin ${{ secrets.ACR_REGISTRY }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v1
with:
images: ${{ secrets.ACR_REGISTRY }}/trueai-org/midjourney-proxy

- name: Build and push Docker image to Alibaba Cloud Registry
uses: docker/build-push-action@v2
with:
context: .
file: ./src/Midjourney.API/Dockerfile
push: true
tags: |
${{ secrets.ACR_REGISTRY }}/trueai-org/midjourney-proxy:${{ steps.meta.outputs.version }}
${{ secrets.ACR_REGISTRY }}/trueai-org/midjourney-proxy:latest
labels: ${{ steps.meta.outputs.labels }}
1 change: 1 addition & 0 deletions src/Midjourney.API/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
ARG BUILD_CONFIGURATION=Release
WORKDIR /src
COPY ["src/Midjourney.API/Midjourney.API.csproj", "src/Midjourney.API/"]
COPY ["src/Midjourney.Infrastructure/Midjourney.Infrastructure.csproj", "src/Midjourney.Infrastructure/"]
RUN dotnet restore "./src/Midjourney.API/./Midjourney.API.csproj"
COPY . .
WORKDIR "/src/src/Midjourney.API"
Expand Down

0 comments on commit 64d3ad9

Please sign in to comment.