Skip to content

Commit 678cb67

Browse files
committed
fix: clean up Dockerfile as flaresolverr is now bundled with ItchClaim
1 parent 7408d8a commit 678cb67

1 file changed

Lines changed: 4 additions & 9 deletions

File tree

Dockerfile

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,18 @@ FROM ghcr.io/flaresolverr/flaresolverr:v3.4.3
44

55
USER root
66

7-
# Delete flaresolverr app directory
8-
# It will be replaced with ItchClaim app
9-
# FlareSolverr will be installed via pip
7+
# Delete flaresolverr app directory from base image
8+
# FlareSolverr is included in ItchClaim as a git submodule
109
RUN rm -rf /app
1110

1211
ENV ITCHCLAIM_DOCKER=TRUE
1312

1413
WORKDIR /app
1514

16-
# Temporarily a fork of FlareSolverr is used, built from git source
17-
RUN apt update && \
18-
apt install -y git && \
19-
apt clean && \
20-
rm -rf /var/lib/apt/lists/*
21-
2215
COPY requirements.txt .
2316

17+
# FlareSolverr dependencies are included in the base image
18+
# note: FROM ghcr.io/flaresolverr/flaresolverr:v3.4.3
2419
RUN pip install -r requirements.txt
2520

2621
ENV PYTHONUNBUFFERED=1

0 commit comments

Comments
 (0)