-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathworker.fine_tuning.Dockerfile
51 lines (40 loc) · 1.63 KB
/
worker.fine_tuning.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Use nvidia cuda as base image
FROM nvidia/cuda:11.7.1-base-ubuntu20.04
# Install required apt packages
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y \
curl \
ca-certificates \
sudo \
git \
bzip2 \
build-essential \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*; \
apt-get update && \
apt-get install -yq software-properties-common && \
add-apt-repository ppa:deadsnakes/ppa && \
apt-get install -yq python3.9 python3.9-distutils && \
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1 && \
apt install -yq python3.9-venv python3.9-dev python3-pip;
# Upgrade pip to the latest version
RUN python3.9 -m pip install --upgrade pip
# Set /tmp as the current working directory.
WORKDIR /tmp
# Install Poetry in this Docker stage.
RUN pip install poetry
# Copy the pyproject.toml and poetry.lock files to the /tmp directory.
COPY ./pyproject.toml ./poetry.lock* /tmp/
# Generate the requirements.txt file.
RUN poetry export --with ml -f requirements.txt --output requirements.txt --without-hashes
# Set the working directory
WORKDIR /embedding_studio
# Copy the requirements.txt file to the /embedding_studio directory.
RUN cp -r /tmp/requirements.txt /embedding_studio/requirements.txt
# Install the package dependencies in the requirements file.
RUN pip3 install --no-cache-dir --upgrade -r requirements.txt
# Copy the application directory inside the /code directory.
COPY . /embedding_studio
# Set the command to run the uvicorn server.
CMD ["dramatiq", "embedding_studio.workers.fine_tuning.worker", "--processes", "1", "--threads", "1"]