diff --git a/Dockerfile.frontend b/Dockerfile.frontend index 9a3b8c4..8a783b2 100644 --- a/Dockerfile.frontend +++ b/Dockerfile.frontend @@ -1,4 +1,4 @@ -FROM node:22-alpine AS build +FROM docker.io/node:22-alpine AS build WORKDIR /app @@ -8,7 +8,7 @@ RUN npm install COPY frontend/ . RUN npm run build -FROM nginx:1.27-alpine +FROM docker.io/nginx:1.27-alpine COPY --from=build /app/dist /usr/share/nginx/html diff --git a/Dockerfile.worker.gguf b/Dockerfile.worker.gguf index e10be5e..114b584 100644 --- a/Dockerfile.worker.gguf +++ b/Dockerfile.worker.gguf @@ -1,4 +1,4 @@ -FROM rocm/pytorch:rocm6.3.2_ubuntu24.04_py3.12 +FROM docker.io/rocm/pytorch:rocm6.3.2_ubuntu24.04_py3.12 WORKDIR /app diff --git a/docker-compose.yml b/docker-compose.yml index 27be6c1..f05f300 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: redis: - image: redis:7-alpine + image: docker.io/redis:7-alpine restart: unless-stopped ports: - "6379:6379" @@ -61,7 +61,7 @@ services: - bornetime frontend: - image: node:22-alpine + image: docker.io/node:22-alpine working_dir: /app command: sh -c "npm install && npm run dev -- --host 0.0.0.0" ports: