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

fix: case mismatch between as and from in Dockerfiles #780

Merged
merged 3 commits into from
Jul 17, 2024
Merged
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
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"]