Update Dockerfile
Browse files- Dockerfile +2 -5
Dockerfile
CHANGED
@@ -4,11 +4,8 @@ FROM python:3.8
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
# Set the FONTCONFIG_PATH environment variable
|
11 |
-
ENV FONTCONFIG_PATH=/tmp/fontconfig
|
12 |
|
13 |
# Copy the requirements file into the container
|
14 |
COPY requirements.txt /app/
|
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
ENV HOME=/home/user \
|
8 |
+
PATH=/home/user/.local/bin:$PATH
|
|
|
|
|
|
|
9 |
|
10 |
# Copy the requirements file into the container
|
11 |
COPY requirements.txt /app/
|