Skip to content

Commit

Permalink
Fix lint issues with ray image (#1432)
Browse files Browse the repository at this point in the history
* fix lint issues with ray image

Signed-off-by: Paul S. Schweigert <[email protected]>

* try docker-compose alias

Signed-off-by: Paul S. Schweigert <[email protected]>

* bump testcontainers version

Signed-off-by: Paul S. Schweigert <[email protected]>

* docker-build.yaml

Signed-off-by: Paul S. Schweigert <[email protected]>

---------

Signed-off-by: Paul S. Schweigert <[email protected]>
  • Loading branch information
psschwei authored Aug 2, 2024
1 parent 65cda73 commit 23d0d7a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 76 deletions.
73 changes: 0 additions & 73 deletions .github/workflows/docker-build.yaml

This file was deleted.

5 changes: 3 additions & 2 deletions Dockerfile-ray-node
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@ ENV PYTHONUNBUFFERED=1
WORKDIR /
USER 0
RUN mkdir /data && chown 1000:1000 /data
USER 0
COPY client ./qs
WORKDIR /qs

RUN pip install -r requirements.txt &&\
RUN pip install -r requirements.txt --no-cache-dir &&\
pip install . --no-cache-dir &&\
pip install --no-cache-dir pyarrow==14.0.1 &&\
pip install --no-cache-dir certifi==2024.7.4 &&\
Expand All @@ -26,3 +25,5 @@ RUN pip install -r requirements.txt &&\

WORKDIR /
RUN rm -r ./qs

USER 1000
2 changes: 1 addition & 1 deletion client/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ reno>=3.5.0
black[jupyter]~=22.12
requests-mock>=1.11.0
# new versions of testcontainers don't support docker compose
testcontainers==3.7.1
testcontainers>=4.7.2
tox>=4.0.0
setuptools>=70.0.0

0 comments on commit 23d0d7a

Please sign in to comment.