fix translation gaudi env (#653)

Signed-off-by: chensuyue <suyue.chen@intel.com>
This commit is contained in:
chen, suyue
2024-08-22 20:00:05 +08:00
committed by GitHub
parent 9657f7bc83
commit 4f3be23efa
6 changed files with 20 additions and 12 deletions

View File

@@ -3,12 +3,13 @@
# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
FROM langchain/langchain:latest
FROM python:3.11-slim
RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing \
libgl1-mesa-glx \
libjemalloc-dev \
vim
vim \
git
RUN useradd -m -s /bin/bash user && \
mkdir -p /home/user && \