Files
rns-page-node/docker/Dockerfile.tests
Renovate Bot 07754bc9fa
All checks were successful
Build and Publish Docker Image / build (pull_request) Successful in 10m28s
Update python Docker tag to v3.14
2025-12-27 20:30:21 +00:00

14 lines
259 B
Docker

FROM python:3.14-slim
RUN apt-get update && apt-get install -y build-essential libssl-dev && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir .
WORKDIR /app/tests
RUN chmod +x run_tests.sh
CMD ["bash", "run_tests.sh"]