-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
61 lines (46 loc) · 1.38 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# syntax=docker/dockerfile:1
# Base stage with common dependencies
FROM python:3.11-slim AS base
WORKDIR /app
# Set uv environment variables
ENV UV_SYSTEM_PYTHON=1
ENV UV_LINK_MODE=copy
# Install system dependencies and uv
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential=12.9 \
curl \
&& rm -rf /var/lib/apt/lists/* \
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
&& mv /root/.local/bin/uv /usr/local/bin/uv \
&& chmod +x /usr/local/bin/uv
# Copy project files
COPY pyproject.toml .
COPY README.md .
COPY promptpal/ promptpal/
COPY tests/ tests/
# Development stage
FROM base AS development
# Install dependencies and set up environment
RUN uv pip install -e ".[dev]" && \
useradd -m -s /bin/bash developer && \
chown -R developer:developer /app
# Set environment variables
ENV PYTHONPATH=/app \
PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
USER developer
# Command to run development server or shell
CMD ["bash"]
# Testing stage
FROM base AS testing
# Install dependencies and set up environment
RUN uv pip install -e ".[dev]" pytest && \
useradd -m -s /bin/bash tester && \
chown -R tester:tester /app
# Set environment variables
ENV PYTHONPATH=/app \
PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
USER tester
# Command to run tests
CMD ["pytest", "tests/unit/", "-v", "-m", "not integration"]