Skip to content

Commit

Permalink
[docker] Updates version to 0.26.0 (#1384)
Browse files Browse the repository at this point in the history
  • Loading branch information
frankfliu authored Dec 12, 2023
1 parent bfbb73d commit 7aed4da
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions serving/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
# or in the "LICENSE.txt" file accompanying this file. This file is distributed on an "AS IS"
# BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. See the License for
# the specific language governing permissions and limitations under the License.
FROM ubuntu:20.04 AS base
ARG djl_version=0.24.0~SNAPSHOT
FROM ubuntu:22.04 AS base
ARG djl_version=0.26.0~SNAPSHOT

COPY scripts scripts/
RUN mkdir -p /opt/djl/conf && \
Expand Down
8 changes: 4 additions & 4 deletions serving/docker/aarch64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
# or in the "LICENSE.txt" file accompanying this file. This file is distributed on an "AS IS"
# BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. See the License for
# the specific language governing permissions and limitations under the License.
FROM arm64v8/ubuntu:20.04
ARG djl_version=0.24.0~SNAPSHOT
ARG torch_version=2.0.1
FROM arm64v8/ubuntu:22.04
ARG djl_version=0.26.0~SNAPSHOT
ARG torch_version=2.1.1

EXPOSE 8080

Expand Down Expand Up @@ -55,7 +55,7 @@ RUN scripts/install_djl_serving.sh $djl_version && \
LABEL maintainer="djl-dev@amazon.com"
LABEL dlc_major_version="1"
LABEL com.amazonaws.ml.engines.sagemaker.dlc.framework.djl.aarch64="true"
LABEL com.amazonaws.ml.engines.sagemaker.dlc.framework.djl.v0-25-0.aarch64="true"
LABEL com.amazonaws.ml.engines.sagemaker.dlc.framework.djl.v0-26-0.aarch64="true"
LABEL com.amazonaws.sagemaker.capabilities.multi-models="true"
LABEL com.amazonaws.sagemaker.capabilities.accept-bind-to-port="true"
LABEL djl-version=$djl_version
Expand Down
2 changes: 1 addition & 1 deletion serving/docker/deepspeed.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ RUN scripts/patch_oss_dlc.sh python && \
LABEL maintainer="djl-dev@amazon.com"
LABEL dlc_major_version="1"
LABEL com.amazonaws.ml.engines.sagemaker.dlc.framework.djl.deepspeed="true"
LABEL com.amazonaws.ml.engines.sagemaker.dlc.framework.djl.v0-25-0.deepspeed="true"
LABEL com.amazonaws.ml.engines.sagemaker.dlc.framework.djl.v0-26-0.deepspeed="true"
LABEL com.amazonaws.sagemaker.capabilities.multi-models="true"
LABEL com.amazonaws.sagemaker.capabilities.accept-bind-to-port="true"
LABEL djl-version=$djl_version
Expand Down
6 changes: 3 additions & 3 deletions serving/docker/pytorch-inf2.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. See the License for
# the specific language governing permissions and limitations under the License.
FROM ubuntu:20.04
ARG djl_version=0.25.0~SNAPSHOT
ARG djl_version=0.26.0~SNAPSHOT
ARG torch_version=1.13.1
ARG python_version=3.9
ARG neuronsdk_version=2.15.2
Expand Down Expand Up @@ -83,8 +83,8 @@ RUN mkdir -p /opt/djl/bin && cp scripts/telemetry.sh /opt/djl/bin && \
LABEL maintainer="djl-dev@amazon.com"
LABEL dlc_major_version="1"
LABEL com.amazonaws.ml.engines.sagemaker.dlc.framework.djl.inf2="true"
LABEL com.amazonaws.ml.engines.sagemaker.dlc.framework.djl.v0-25-0.inf2="true"
LABEL com.amazonaws.ml.engines.sagemaker.dlc.framework.djl.v0-26-0.inf2="true"
LABEL com.amazonaws.sagemaker.capabilities.multi-models="true"
LABEL com.amazonaws.sagemaker.capabilities.accept-bind-to-port="true"
LABEL djl-version=$djl_version
LABEL neuronsdk-version=$neuronsdk_version
LABEL neuronsdk-version=$neuronsdk_version
4 changes: 2 additions & 2 deletions serving/docker/tensorrt-llm.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ FROM nvidia/cuda:$version
ARG cuda_version=cu122
ARG python_version=3.10
ARG TORCH_VERSION=2.1.0
ARG djl_version=0.24.0~SNAPSHOT
ARG djl_version=0.26.0~SNAPSHOT
ARG transformers_version=4.34.0
ARG accelerate_version=0.23.0
ARG tensorrtlibs_version=9.2.0.post12.dev5
Expand Down Expand Up @@ -105,7 +105,7 @@ RUN apt-get update && apt-get install -y cuda-compat-12-2 && apt-get clean -y &&
LABEL maintainer="djl-dev@amazon.com"
LABEL dlc_major_version="1"
LABEL com.amazonaws.ml.engines.sagemaker.dlc.framework.djl.tensorrtllm="true"
LABEL com.amazonaws.ml.engines.sagemaker.dlc.framework.djl.v0-25-0.tensorrtllm="true"
LABEL com.amazonaws.ml.engines.sagemaker.dlc.framework.djl.v0-26-0.tensorrtllm="true"
LABEL com.amazonaws.sagemaker.capabilities.multi-models="true"
LABEL com.amazonaws.sagemaker.capabilities.accept-bind-to-port="true"
LABEL djl-version=$djl_version
Expand Down

0 comments on commit 7aed4da

Please sign in to comment.