mirror of
https://github.com/tig-foundation/tig-monorepo.git
synced 2026-03-06 08:47:57 +08:00
14 lines
236 B
Docker
14 lines
236 B
Docker
FROM python:3.13-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY master/requirements.txt requirements.txt
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY common common
|
|
COPY master/master master
|
|
COPY master/main.py main.py
|
|
|
|
CMD ["python", "main.py"]
|