Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ RUN rm -rf /var/lib/apt/lists/* && \
COPY *.md ./
COPY setup.py ./
COPY merlion merlion
RUN pip install "./"
RUN pip install --no-cache-dir "./"
2 changes: 1 addition & 1 deletion docker/dashboard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ RUN rm -rf /var/lib/apt/lists/* && \
COPY *.md ./
COPY setup.py ./
COPY merlion merlion
RUN pip install gunicorn "./[dashboard]"
RUN pip install --no-cache-dir gunicorn "./[dashboard]"
CMD gunicorn -b 0.0.0.0:80 merlion.dashboard.server:server
2 changes: 1 addition & 1 deletion docker/spark-on-k8s/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV PYTHONPATH="${SPARK_HOME}/python/lib/pyspark.zip:${SPARK_HOME}/python/lib/py
COPY *.md ./
COPY setup.py ./
COPY merlion merlion
RUN pip install pyarrow "./"
RUN pip install --no-cache-dir pyarrow "./"

# Copy Merlion pyspark apps
COPY spark_apps /opt/spark/apps
Expand Down