aboutsummaryrefslogtreecommitdiffstats
path: root/test/Dockerfile.gemini-py
blob: fd256c79509031571c2f531901c3bfc611400bde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.12-bookworm

WORKDIR /app

COPY pyproject.toml README.md ./
COPY src/ ./src/

RUN pip install --no-cache-dir .

COPY test/scripts/ /app/scripts/
COPY test/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

ENTRYPOINT ["/entrypoint.sh"]
CMD ["python", "/app/scripts/send_test.py"]