Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat : use --no-cache-dir flag to pip in dockerfiles to save space #174

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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