You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
936 B
28 lines
936 B
# Use an official Python runtime as a parent image
|
|
FROM python:3.11-slim-bullseye
|
|
|
|
# Set environment variables for Python behavior
|
|
ENV PYTHONDONTWRITEBYTECODE=1 \
|
|
PYTHONUNBUFFERED=1 \
|
|
PIP_NO_CACHE_DIR=1 \
|
|
PIP_DISABLE_PIP_VERSION_CHECK=1 \
|
|
PIP_DEFAULT_TIMEOUT=100
|
|
|
|
# Set the working directory to the root of the project (relative to pyproject.toml)
|
|
WORKDIR /usr/src/app
|
|
|
|
# Copy the entire project into the container
|
|
COPY . .
|
|
|
|
# Install Poetry
|
|
RUN pip install poetry
|
|
|
|
# Configure Poetry to avoid virtual environments and install dependencies
|
|
RUN poetry config virtualenvs.create false && poetry install --no-interaction --no-ansi
|
|
|
|
# Install additional dependencies outside Poetry (e.g., swarms, pytest)
|
|
RUN pip install swarms pytest
|
|
|
|
# Default command to run tests located in the /tests directory
|
|
CMD pytest /usr/src/app/tests --continue-on-collection-errors --tb=short --disable-warnings | tee /usr/src/app/test_logs.txt
|