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