Skip to content

Commit

Permalink
Correct casing (BerriAI#5817)
Browse files Browse the repository at this point in the history
* Update Dockerfile

correct casing

* Update Dockerfile.database

correct casing

* Update Dockerfile.alpine

correct casing

* Update Dockerfile.non_root

correct casing
  • Loading branch information
superpoussin22 authored Sep 21, 2024
1 parent 1d630b6 commit acfb060
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG LITELLM_BUILD_IMAGE=python:3.11.8-slim
# Runtime image
ARG LITELLM_RUNTIME_IMAGE=python:3.11.8-slim
# Builder stage
FROM $LITELLM_BUILD_IMAGE as builder
FROM $LITELLM_BUILD_IMAGE AS builder

# Set the working directory to /app
WORKDIR /app
Expand Down Expand Up @@ -47,7 +47,7 @@ RUN pip install PyJWT --no-cache-dir
RUN chmod +x build_admin_ui.sh && ./build_admin_ui.sh

# Runtime stage
FROM $LITELLM_RUNTIME_IMAGE as runtime
FROM $LITELLM_RUNTIME_IMAGE AS runtime

WORKDIR /app
# Copy the current directory contents into the container at /app
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG LITELLM_BUILD_IMAGE=python:3.11-alpine
ARG LITELLM_RUNTIME_IMAGE=python:3.11-alpine

# Builder stage
FROM $LITELLM_BUILD_IMAGE as builder
FROM $LITELLM_BUILD_IMAGE AS builder

# Set the working directory to /app
WORKDIR /app
Expand Down Expand Up @@ -34,7 +34,7 @@ RUN pip install dist/*.whl
RUN pip wheel --no-cache-dir --wheel-dir=/wheels/ -r requirements.txt

# Runtime stage
FROM $LITELLM_RUNTIME_IMAGE as runtime
FROM $LITELLM_RUNTIME_IMAGE AS runtime

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.database
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG LITELLM_BUILD_IMAGE=python:3.11.8-slim
# Runtime image
ARG LITELLM_RUNTIME_IMAGE=python:3.11.8-slim
# Builder stage
FROM $LITELLM_BUILD_IMAGE as builder
FROM $LITELLM_BUILD_IMAGE AS builder

# Set the working directory to /app
WORKDIR /app
Expand Down Expand Up @@ -36,7 +36,7 @@ RUN pip install dist/*.whl
RUN pip wheel --no-cache-dir --wheel-dir=/wheels/ -r requirements.txt

# Runtime stage
FROM $LITELLM_RUNTIME_IMAGE as runtime
FROM $LITELLM_RUNTIME_IMAGE AS runtime

WORKDIR /app
# Copy the current directory contents into the container at /app
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.non_root
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG LITELLM_BUILD_IMAGE=python:3.11.8-slim
# Runtime image
ARG LITELLM_RUNTIME_IMAGE=python:3.11.8-slim
# Builder stage
FROM $LITELLM_BUILD_IMAGE as builder
FROM $LITELLM_BUILD_IMAGE AS builder

# Set the working directory to /app
WORKDIR /app
Expand Down Expand Up @@ -36,7 +36,7 @@ RUN pip install dist/*.whl
RUN pip wheel --no-cache-dir --wheel-dir=/wheels/ -r requirements.txt

# Runtime stage
FROM $LITELLM_RUNTIME_IMAGE as runtime
FROM $LITELLM_RUNTIME_IMAGE AS runtime

WORKDIR /app
# Copy the current directory contents into the container at /app
Expand Down

0 comments on commit acfb060

Please sign in to comment.