train-llama / Dockerfile
nroggendorff's picture
Update Dockerfile
43fb4be verified
raw
history blame
209 Bytes
FROM python:latest
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
RUN mkdir /.cache && chmod 777 /.cache
RUN mkdir /app/model && chmod 777 /app/model
CMD ["python3", "train.py"]