Update Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
@@ -16,6 +16,12 @@ COPY ./requirements.txt /code/requirements.txt
|
|
16 |
# For hugging face
|
17 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
# Set up user and environment
|
20 |
RUN useradd -m -u 1000 user
|
21 |
USER user
|
|
|
16 |
# For hugging face
|
17 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
18 |
|
19 |
+
# Create conversations.jsonl file
|
20 |
+
RUN touch /code/conversations.jsonl
|
21 |
+
|
22 |
+
# Set permissions for conversations.jsonl
|
23 |
+
RUN chmod 666 /code/conversations.jsonl
|
24 |
+
|
25 |
# Set up user and environment
|
26 |
RUN useradd -m -u 1000 user
|
27 |
USER user
|