Skip to content

Commit

Permalink
fix(tgwui): args on the top, fix echo log
Browse files Browse the repository at this point in the history
  • Loading branch information
marchuk-vlad committed Nov 26, 2024
1 parent f39bea3 commit cf03053
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +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'
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
4 changes: 2 additions & 2 deletions Text Generation WebUI/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:20-bookworm AS builder

ARG GPU_CHOICE

FROM node:20-bookworm AS builder

WORKDIR /home/node/app

COPY . /home/node/app
Expand Down

0 comments on commit cf03053

Please sign in to comment.