Skip to content

Commit

Permalink
Merge branch 'main' into v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mansuf committed Aug 21, 2024
2 parents 6ee476c + 79daadb commit 6cfc7df
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
- name: Login to AWS ECR
uses: docker/login-action@v3
with:
registry: public.ecr.aws
Expand All @@ -138,7 +138,7 @@ jobs:
push: true
tags: |
${{ env.AWS_ECR_LATEST_TAG }}
public.ecr.aws/n3n5b0s8/mansuf/mangadex-downloader:${{ github.ref_name }}
public.ecr.aws/mansuf/mangadex-downloader:${{ github.ref_name }}
- name: Build and push (with optional dependencies)
uses: docker/build-push-action@v5
Expand All @@ -152,7 +152,7 @@ jobs:
push: true
tags: |
${{ env.AWS_ECR_LATEST_OPTIONAL_TAG }}
public.ecr.aws/n3n5b0s8/mansuf/mangadex-downloader:${{ github.ref_name }}-optional
public.ecr.aws/mansuf/mangadex-downloader:${{ github.ref_name }}-optional
windows-build:
name: Build app & docs (Windows)
Expand Down
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
FROM python:3.11
FROM python:3.11-alpine

COPY . /app
WORKDIR /app

# Setup dependencies
RUN apk add --no-cache jpeg-dev zlib-dev build-base python3-dev freetype-dev

# Install mangadex-downloader
RUN pip install --upgrade pip
RUN pip install .
Expand Down

0 comments on commit 6cfc7df

Please sign in to comment.