08ea5fbe98
添加用户管理视图、API和状态管理文件
16 lines
340 B
Docker
16 lines
340 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
postgresql-client \
|
|
curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements-test-data.txt .
|
|
RUN pip install --no-cache-dir -r requirements-test-data.txt
|
|
|
|
COPY test-data-manager/ ./test-data-manager/
|
|
|
|
CMD ["python", "-m", "test_data_manager.main"]
|