Skip to content

Commit

Permalink
fix(ga-build-engines): Added echo logs
Browse files Browse the repository at this point in the history
  • Loading branch information
marchuk-vlad committed Nov 26, 2024
1 parent 8ddb44a commit f39bea3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build-engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ jobs:
- name: Build Docker image and save to file
run: |
IMAGE_FILE="$SOLUTION-image-b${{ github.run_id }}.tar.gz"
echo 'docker build -t $SOLUTION:latest -f "$DOCKERFILE" $(echo $BUILD_ARGS) "$DOCKERFILE_CONTEXT'
docker build -t $SOLUTION:latest -f "$DOCKERFILE" $(echo $BUILD_ARGS) "$DOCKERFILE_CONTEXT"
docker save $SOLUTION:latest | gzip > $IMAGE_FILE
Expand Down
2 changes: 1 addition & 1 deletion Text Generation WebUI/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ COPY --from=builder /home/node/app/text-generation-webui ./text-generation-webui
RUN apt update && apt install -y git &&\
git config --global --add safe.directory /home/node/app/text-generation-webui &&\
chmod +x ./text-generation-webui/start_linux.sh &&\
GPU_CHOICE="$GPU_CHOICE" USE_CUDA118=FALSE LAUNCH_AFTER_INSTALL=FALSE INSTALL_EXTENSIONS=FALSE ./text-generation-webui/start_linux.sh &&\
GPU_CHOICE=$GPU_CHOICE USE_CUDA118=FALSE LAUNCH_AFTER_INSTALL=FALSE INSTALL_EXTENSIONS=FALSE ./text-generation-webui/start_linux.sh &&\
apt remove git -y &&\
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb &&\
dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb &&\
Expand Down

0 comments on commit f39bea3

Please sign in to comment.