Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -20,6 +20,8 @@ RUN pip install --no-cache-dir --upgrade pip
|
|
20 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
21 |
COPY --chown=user . $HOME/app
|
22 |
|
|
|
|
|
23 |
# Install any needed packages specified in requirements.txt
|
24 |
RUN pip install --no-cache-dir -r requirements.txt
|
25 |
|
|
|
20 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
21 |
COPY --chown=user . $HOME/app
|
22 |
|
23 |
+
ENV SUPERSET_CONFIG_PATH $HOME/app/superset_config.py
|
24 |
+
|
25 |
# Install any needed packages specified in requirements.txt
|
26 |
RUN pip install --no-cache-dir -r requirements.txt
|
27 |
|