All checks were successful
Build & Publish to GHCR / build (push) Successful in 1m11s
14 lines
221 B
Docker
14 lines
221 B
Docker
FROM python:3.12-slim
|
|
|
|
RUN apt-get update && apt-get install -y git
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
WORKDIR /app
|
|
|
|
COPY src/ /app/
|
|
|
|
ENTRYPOINT ["python","rabbitmq_handler.py"]
|