File size: 973 Bytes
556476f
 
 
29f1043
 
 
 
 
 
 
 
556476f
29f1043
 
9773321
29f1043
 
9773321
044fb3f
17eecfa
0cbb966
5acc7f9
044fb3f
29f1043
980d9ed
29f1043
 
eed7f67
0daa081
044fb3f
556476f
 
 
989aa4d
556476f
 
219006d
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
FROM python:3.9

#COPY requirements.txt /app/
WORKDIR /app
# # Set up a new user named "user" with user ID 1000
# RUN useradd -m -u 1000 user
# # Switch to the "user" user
# USER user
# # Set home to the user's home directory
# ENV HOME=/home/user \
# 	PATH=/home/user/.local/bin:$PATH

# # Set the working directory to the user's home directory
# WORKDIR $HOME/app

# # Copy the current directory contents into the container at $HOME/app setting the owner to the user
# COPY --chown=user . $HOME/app

RUN --mount=type=secret,id=LICENSE_KEY,mode=0444,required=true \
    pip install --upgrade pip \
    && pip install typing_extensions==4.5.0 \
    && pip install --quiet prodigy -f https://$(cat /run/secrets/LICENSE_KEY)@download.prodi.gy

RUN chmod 777 .

COPY prodigy.json .
COPY data ./data/
COPY rlhf_ranking.py .
COPY prodigy.sh .

ENV PRODIGY_HOME /app
ENV PRODIGY_LOGGING "verbose"
ENV PRODIGY_ALLOWED_SESSIONS "user1,user2"

EXPOSE 7860

CMD ["bash","prodigy.sh"]