Skip to content
This repository has been archived by the owner on Feb 15, 2025. It is now read-only.

Commit

Permalink
fix: address Docker warning about case mismatch between 'as' and 'fro…
Browse files Browse the repository at this point in the history
…m'. (#780)
  • Loading branch information
gphorvath authored Jul 17, 2024
1 parent ea1ba30 commit a72bc94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/vllm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG LOCAL_VERSION
FROM ghcr.io/defenseunicorns/leapfrogai/leapfrogai-sdk:${LOCAL_VERSION} as sdk
FROM ghcr.io/defenseunicorns/leapfrogai/leapfrogai-sdk:${LOCAL_VERSION} AS sdk

FROM nvidia/cuda:12.2.2-devel-ubuntu22.04 as builder
FROM nvidia/cuda:12.2.2-devel-ubuntu22.04 AS builder
ARG SDK_DEST=src/leapfrogai_sdk/build

# Set the config file defaults
Expand Down Expand Up @@ -129,4 +129,4 @@ RUN python3 packages/vllm/src/model_download.py

EXPOSE 50051:50051

ENTRYPOINT ["python", "-m", "leapfrogai_sdk.cli", "--app-dir=packages/vllm/src/", "main:Model"]
ENTRYPOINT ["python", "-m", "leapfrogai_sdk.cli", "--app-dir=packages/vllm/src/", "main:Model"]

0 comments on commit a72bc94

Please sign in to comment.