7 lines
183 B
Docker
7 lines
183 B
Docker
FROM python:3.11 as base
|
|
WORKDIR /app/
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip --no-cache-dir install -r requirements.txt
|
|
CMD ["python3", "-m", "nightly"]
|
|
COPY nightly nightly
|