Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app-frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN npm install --legacy-peer-deps && npm run build
FROM nginx:alpine

# Install uuidgen in the nginx:alpine image
RUN apk add --no-cache util-linux=2.40.1-r1
RUN apk add --no-cache util-linux

COPY --from=vite-app /usr/app/react/dist /usr/share/nginx/html
COPY ./react/env.sh /docker-entrypoint.d/env.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
TEI_EMBEDDING_ENDPOINT: "http://${public_host_ip}:{{tei_port}}"
TRANSFORMERS_CACHE: "/tmp/transformers_cache"
HF_HOME: "/tmp/.cache/huggingface"
restart: unless-stopped
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ data:
http_proxy: ""
https_proxy: ""
no_proxy: ""
TRANSFORMERS_CACHE: "/tmp/transformers_cache"
HF_HOME: "/tmp/.cache/huggingface"
LOGFLAG: ""
---
# Source: embedding-usvc/templates/service.yaml
Expand Down