feat(admin): 添加用户管理相关文件
添加用户管理视图、API和状态管理文件
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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"]
|
||||
Reference in New Issue
Block a user