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

Add vim to images #1186

Merged
merged 2 commits into from
Jan 24, 2024
Merged
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
8 changes: 4 additions & 4 deletions Dockerfile-ray-node
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN pip install . --no-cache-dir &&\
pip install --no-cache-dir pyarrow==14.0.1 &&\
pip install --no-cache-dir certifi==2023.7.22

WORKDIR /
WORKDIR /
RUN rm -r ./qs

FROM rayproject/ray:2.9.0-$IMAGE_PY_VERSION-aarch64 AS ray-node-arm64
Expand All @@ -24,9 +24,9 @@ WORKDIR /
USER 0
RUN mkdir /data && chown "$RAY_UID":"$RAY_UID" /data
USER $RAY_UID
RUN apt-get -y update &&\
apt-get install --no-install-recommends -y \
gcc=4:9.3.0-1ubuntu2 \
RUN apt-get -y update &&\
apt-get install --no-install-recommends -y \
gcc=4:9.3.0-1ubuntu2 \
build-essential=12.8ubuntu1
COPY --chown=$RAY_UID:$RAY_UID ./client ./qs

Expand Down
2 changes: 1 addition & 1 deletion gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ENV PYTHONUNBUFFERED 1

# install psycopg2 dependencies
RUN apt-get -y update &&\
apt-get install --no-install-recommends -y gcc=4:8.3.0-1 python3-dev=3.7.3-1 &&\
apt-get install --no-install-recommends -y gcc=4:8.3.0-1 python3-dev=3.7.3-1 vim &&\
apt-get clean &&\
rm -rf /var/lib/apt/lists/*

Expand Down
1 change: 1 addition & 0 deletions repository/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

USER 0
RUN apt-get update && apt-get install -y vim
COPY repository .
RUN chown -R 1001:0 /usr/src/app &&\
pip install -r requirements.txt --no-cache-dir
Expand Down