Skip to content

Commit

Permalink
separated amazon models into individual containers
Browse files Browse the repository at this point in the history
  • Loading branch information
attilabalint committed Jun 13, 2024
1 parent 41633de commit f75b16d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions models/amazon-chronos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ WORKDIR /usr/local/app
COPY ./requirements.txt /usr/local/app/requirements.txt
RUN pip install --no-cache-dir -r /usr/local/app/requirements.txt

COPY ./models /usr/local/app/models
ARG MODEL_SIZE
COPY ./models/chronos-t5-${MODEL_SIZE} /usr/local/app/models/chronos-t5-${MODEL_SIZE}
COPY ./src /usr/local/app/src

ENV ENFOBENCH_MODEL_NAME="chronos-t5-tiny"
ENV ENFOBENCH_MODEL_NAME="chronos-t5-${MODEL_SIZE}"
ENV ENFOBENCH_NUM_SAMPLES="1"

EXPOSE 3000
Expand Down

0 comments on commit f75b16d

Please sign in to comment.