Skip to content

Commit

Permalink
chore: removed MODEL environment variable as it is specify in the mod…
Browse files Browse the repository at this point in the history
…al server source
  • Loading branch information
limcheekin committed Jul 12, 2024
1 parent a1eb778 commit 6aef95e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile-Modal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM debian:bullseye-slim AS build-image

ARG MODEL
ENV MODEL=${MODEL}
#ARG MODEL
#ENV MODEL=${MODEL}

COPY ./download.sh ./

Expand All @@ -16,7 +16,7 @@ RUN chmod +x *.sh && \
# Grab a fresh copy of the Python image
FROM python:3.11-slim

ARG MODEL
#ARG MODEL

RUN mkdir -p ${MODEL}
COPY --from=build-image ${MODEL} ${MODEL}
Expand Down

0 comments on commit 6aef95e

Please sign in to comment.