nikhil_no_persistent / Dockerfile
nsthorat-lilac's picture
Duplicate from lilacai/nikhil_staging
bfc0ec6
raw
history blame
762 Bytes
# NOTE: When we upgrade to 3.11 we can use a slimmer docker image which comes with gcc.
FROM python:3.9-bullseye
# Allow statements and log messages to immediately appear in the Knative logs
ENV PYTHONUNBUFFERED True
# Set the working directory in the container.
WORKDIR /server
# Install the dependencies. This requires exporting requirements.txt from poetry first, which
# happens from ./build_docker.sh.
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY .env .
COPY .env.demo .
COPY demo_config.yml .
# Copy the README so we can read the datasets from the HuggingFace config.
COPY README.md .
COPY LICENSE .
# Copy python files.
COPY /lilac ./lilac/
COPY docker_start.sh docker_start.py ./
CMD ["bash", "docker_start.sh"]