multibuild and pin package
Some checks failed
Build and Publish Docker Image / build-and-push (push) Failing after 38s

This commit is contained in:
Karl 2025-07-14 14:30:42 +01:00
parent c21e4b8206
commit aa29eb27f8
2 changed files with 30 additions and 20 deletions

View File

@ -1,31 +1,41 @@
FROM python:3.11-slim-bookworm # ---- Builder Stage ----
FROM python:3.11-slim-bookworm as builder
RUN apt-get update && apt-get install -y --no-install-recommends \ # Install git for fetching git-based dependencies
git \ RUN apt-get update && apt-get install -y --no-install-recommends git && rm -rf /var/lib/apt/lists/*
libglib2.0-0 \
libsm6 \
libxrender1 \
libxext6 \
libgomp1 \
libgl1 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Create a virtual environment
RUN python -m venv /opt/venv
# Activate the virtual environment
ENV PATH="/opt/venv/bin:$PATH"
# Copy requirements and install dependencies
WORKDIR /app WORKDIR /app
COPY requirements.txt . COPY requirements.txt .
RUN pip install --no-cache-dir requests stem
RUN pip install --no-cache-dir git+https://github.com/karl0ss/requests_tor.git@ae1e85abb3bb2c25f431bd031c6d881986c626f6
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
# ---- Final Stage ----
FROM python:3.11-slim-bookworm
# Set working directory
WORKDIR /app
# Copy virtual environment from builder stage
COPY --from=builder /opt/venv /opt/venv
# Activate the virtual environment
ENV PATH="/opt/venv/bin:$PATH"
ENV FLASK_ENV=production
# Copy application code
COPY . . COPY . .
# Handle versioning
ARG VERSION ARG VERSION
RUN echo $VERSION > VERSION RUN if [ -n "$VERSION" ]; then echo $VERSION > VERSION; fi
EXPOSE 3001 # Make run script executable and run the application
ENV FLASK_ENV=production
RUN chmod +x run_docker.sh RUN chmod +x run_docker.sh
EXPOSE 3001
CMD ["./run_docker.sh"] CMD ["./run_docker.sh"]

View File

@ -17,4 +17,4 @@ urllib3==2.4.0
gunicorn gunicorn
Flask Flask
PyJWT PyJWT
pycryptodome pycryptodome==3.20.0