File size: 116 Bytes
54f5ec9 | 1 2 3 4 5 6 | FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "train.py"]
|
54f5ec9 | 1 2 3 4 5 6 | FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "train.py"]
|