mistral-7b-docker / Dockerfile
xynull's picture
Add application file
50c6d0e
raw
history blame
222 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
RUN mkdir /.cache
RUN python gpt2.py
CMD ["python", "gpt2.py"]