Skip to content

Commit

Permalink
Merge branch 'main' into release-0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
aniketmaurya authored Oct 2, 2024
2 parents c435503 + 86e00bc commit 10fab8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_docker_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def test_color():
"""


EXPECTED_GPU_DOCKERFILE = """# Change CUDA and cuDNN version here
EXPECTED_GPU_DOCKERFILE = f"""# Change CUDA and cuDNN version here
FROM nvidia/cuda:12.4.1-cudnn-runtime-ubuntu20.04
ENV DEBIAN_FRONTEND=noninteractive
Expand Down Expand Up @@ -73,7 +73,7 @@ def test_color():
COPY . /app
# Install litserve and requirements
RUN pip install --no-cache-dir litserve==0.2.2 -r requirements.txt
RUN pip install --no-cache-dir litserve=={ls.__version__} -r requirements.txt
EXPOSE 8000
CMD ["python", "/app/app.py"]
"""
Expand Down

0 comments on commit 10fab8b

Please sign in to comment.