vkt1414 commited on
Commit
cbbede3
·
verified ·
1 Parent(s): e7f7468

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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