Compare commits

...

11 Commits

Author SHA1 Message Date
renovate[bot]
cc7f5ec5f6
Update dependency fastapi to v0.115.9 (#96)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-28 02:18:00 +00:00
ThePhaseless
971931aa7d cache apt and uv libs 2025-02-28 01:06:25 +01:00
ThePhaseless
368634931a add ca-certs 2025-02-27 23:29:47 +00:00
ThePhaseless
6ddfa7784d docker way to install uv 2025-02-27 23:28:23 +00:00
ThePhaseless
1fe887a71e cleanup dockerfile 2025-02-27 23:16:34 +00:00
ThePhaseless
012837b863 dont upgrade packages 2025-02-27 20:31:37 +00:00
ThePhaseless
5129c922c6 add qemu 2025-02-27 20:20:55 +00:00
ThePhaseless
0121783ea7 another attempt 2025-02-27 20:07:23 +00:00
ThePhaseless
ee14c7c1a0 fix invalidating cache 2025-02-27 19:57:00 +00:00
ThePhaseless
e83b4e4683 add version to container 2025-02-27 19:42:32 +00:00
ThePhaseless
babac914cb another fix 2025-02-27 19:41:54 +00:00
4 changed files with 30 additions and 25 deletions

View File

@ -69,6 +69,11 @@ jobs:
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@v3 uses: sigstore/cosign-installer@v3
# Add support for more platforms with QEMU (optional)
# https://github.com/docker/setup-qemu-action
- name:
uses: docker/setup-qemu-action@v3
# Set up BuildKit Docker container builder # Set up BuildKit Docker container builder
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
@ -90,7 +95,10 @@ jobs:
tags: | tags: |
type=ref,event=branch type=ref,event=branch
type=ref,event=pr type=ref,event=pr
type=semver,pattern={{version}}-${{ matrix.platform == 'linux/amd64' && 'amd64' || 'arm64' }} type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=raw,enable=${{ github.ref_type == 'tag' }}, value=latest
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
# Build and push Docker image with platform-specific tag # Build and push Docker image with platform-specific tag
@ -101,12 +109,12 @@ jobs:
context: . context: .
pull: true pull: true
push: ${{ github.event_name != 'pull_request' }} push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}-${{ matrix.platform == 'linux/amd64' && 'amd64' || 'arm64' }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
platforms: ${{ matrix.platform }} platforms: ${{ matrix.platform }}
cache-from: type=gha,scope=${{ matrix.platform }} cache-from: type=gha,scope=${{ matrix.platform }}
cache-to: type=gha,mode=max,scope=${{ matrix.platform }} cache-to: type=gha,mode=max,scope=${{ matrix.platform }}
build-args: GITHUB_BUILD=true,VERSION=${{ github.ref_name }} build-args: GITHUB_BUILD=true,VERSION=${{ github.ref_type == 'tag' && github.ref_name || github.sha }}
# Sign the platform specific image # Sign the platform specific image
- name: Sign the published Docker image - name: Sign the published Docker image

View File

@ -1,32 +1,29 @@
FROM debian:bullseye-slim AS base FROM debian:bullseye-slim AS base
# Inspired by https://github.com/Hudrolax/uc-docker-alpine/ ARG GITHUB_BUILD=false \
VERSION
ARG GITHUB_BUILD=false ENV HOME=/root \
ENV GITHUB_BUILD=${GITHUB_BUILD} GITHUB_BUILD=${GITHUB_BUILD}\
VERSION=${VERSION}\
ENV HOME=/root
ENV \
DEBIAN_FRONTEND=noninteractive \ DEBIAN_FRONTEND=noninteractive \
PYTHONUNBUFFERED=1 \ PYTHONUNBUFFERED=1 \
# prevents python creating .pyc files # prevents python creating .pyc files
PYTHONDONTWRITEBYTECODE=1 \ PYTHONDONTWRITEBYTECODE=1 \
PATH="${HOME}/.local/bin:$PATH" \
DISPLAY=:0 DISPLAY=:0
ENV PATH="${HOME}/.local/bin:$PATH"
WORKDIR /app WORKDIR /app
RUN rm /var/lib/dpkg/info/libc-bin.* RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
RUN apt-get clean --mount=type=cache,target=/var/lib/apt,sharing=locked \
RUN apt-get update apt update && \
RUN apt-get install libc-bin apt install -y --no-install-recommends --no-install-suggests xauth xvfb scrot wget chromium chromium-driver ca-certificates
RUN apt update &&\ ADD https://astral.sh/uv/install.sh install.sh
apt upgrade -y &&\ RUN sh install.sh
apt install -y --no-install-recommends --no-install-suggests xauth xvfb scrot curl chromium chromium-driver ca-certificates
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
COPY pyproject.toml uv.lock ./ COPY pyproject.toml uv.lock ./
RUN uv sync RUN --mount=type=cache,target=${HOME}/.cache/uv uv sync
# SeleniumBase does not come with an arm64 chromedriver binary # SeleniumBase does not come with an arm64 chromedriver binary
RUN cd .venv/lib/*/site-packages/seleniumbase/drivers && ln -s /usr/bin/chromedriver uc_driver RUN cd .venv/lib/*/site-packages/seleniumbase/drivers && ln -s /usr/bin/chromedriver uc_driver
@ -35,7 +32,7 @@ COPY . .
FROM base AS test FROM base AS test
RUN uv sync --group test RUN --mount=type=cache,target=${HOME}/.cache/uv uv sync --group test
RUN ./test.sh RUN ./test.sh
FROM base FROM base

View File

@ -8,7 +8,7 @@ version = "0.1.0"
description = "API for getting cookies for Cloudflare challenges" description = "API for getting cookies for Cloudflare challenges"
readme = "README.md" readme = "README.md"
dependencies = [ dependencies = [
"fastapi[standard]==0.115.8", "fastapi[standard]==0.115.9",
"pyautogui==0.9.54", "pyautogui==0.9.54",
"pydantic==2.10.6", "pydantic==2.10.6",
"seleniumbase==4.35.2", "seleniumbase==4.35.2",

8
uv.lock generated
View File

@ -89,7 +89,7 @@ test = [
[package.metadata] [package.metadata]
requires-dist = [ requires-dist = [
{ name = "fastapi", extras = ["standard"], specifier = "==0.115.8" }, { name = "fastapi", extras = ["standard"], specifier = "==0.115.9" },
{ name = "pyautogui", specifier = "==0.9.54" }, { name = "pyautogui", specifier = "==0.9.54" },
{ name = "pydantic", specifier = "==2.10.6" }, { name = "pydantic", specifier = "==2.10.6" },
{ name = "seleniumbase", specifier = "==4.35.2" }, { name = "seleniumbase", specifier = "==4.35.2" },
@ -272,16 +272,16 @@ wheels = [
[[package]] [[package]]
name = "fastapi" name = "fastapi"
version = "0.115.8" version = "0.115.9"
source = { registry = "https://pypi.org/simple" } source = { registry = "https://pypi.org/simple" }
dependencies = [ dependencies = [
{ name = "pydantic" }, { name = "pydantic" },
{ name = "starlette" }, { name = "starlette" },
{ name = "typing-extensions" }, { name = "typing-extensions" },
] ]
sdist = { url = "https://files.pythonhosted.org/packages/a2/b2/5a5dc4affdb6661dea100324e19a7721d5dc524b464fe8e366c093fd7d87/fastapi-0.115.8.tar.gz", hash = "sha256:0ce9111231720190473e222cdf0f07f7206ad7e53ea02beb1d2dc36e2f0741e9", size = 295403 } sdist = { url = "https://files.pythonhosted.org/packages/ab/dd/d854f85e70f7341b29e3fda754f2833aec197bd355f805238758e3bcd8ed/fastapi-0.115.9.tar.gz", hash = "sha256:9d7da3b196c5eed049bc769f9475cd55509a112fbe031c0ef2f53768ae68d13f", size = 293774 }
wheels = [ wheels = [
{ url = "https://files.pythonhosted.org/packages/8f/7d/2d6ce181d7a5f51dedb8c06206cbf0ec026a99bf145edd309f9e17c3282f/fastapi-0.115.8-py3-none-any.whl", hash = "sha256:753a96dd7e036b34eeef8babdfcfe3f28ff79648f86551eb36bfc1b0bf4a8cbf", size = 94814 }, { url = "https://files.pythonhosted.org/packages/32/b6/7517af5234378518f27ad35a7b24af9591bc500b8c1780929c1295999eb6/fastapi-0.115.9-py3-none-any.whl", hash = "sha256:4a439d7923e4de796bcc88b64e9754340fcd1574673cbd865ba8a99fe0d28c56", size = 94919 },
] ]
[package.optional-dependencies] [package.optional-dependencies]