Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -16,6 +16,9 @@ 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 |
+
# Give read and write permissions to the conversations.jsonl file
|
20 |
+
RUN chmod 666 /code/conversations.jsonl
|
21 |
+
|
22 |
# Set up user and environment
|
23 |
RUN useradd -m -u 1000 user
|
24 |
USER user
|