diff --git a/.github/workflows/dockerbuild.yaml b/.github/workflows/dockerbuild.yaml index 8ef5bde0..7dfc5e1a 100644 --- a/.github/workflows/dockerbuild.yaml +++ b/.github/workflows/dockerbuild.yaml @@ -23,6 +23,14 @@ jobs: path: functions/onprem/orborus version: nightly experimental: true + - app: worker + path: functions/onprem/worker + version: nightly + experimental: true + - app: app_sdk + path: backend/app_sdk + version: nightly + experimental: true steps: - name: Checkout diff --git a/docker-compose.yml b/docker-compose.yml index 4ce779b8..7f4df4a7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '3' services: frontend: - #build: ./frontend + build: ./frontend image: ghcr.io/frikky/shuffle-frontend:nightly container_name: shuffle-frontend hostname: shuffle-frontend @@ -16,7 +16,7 @@ services: depends_on: - backend backend: - build: ./backend + #build: ./backend image: ghcr.io/frikky/shuffle-backend:nightly container_name: shuffle-backend hostname: ${BACKEND_HOSTNAME} diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 4f1c47bf..b2d4f2ce 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -9,7 +9,7 @@ ENV PATH /usr/src/app/node_modules/.bin:$PATH COPY package.json /usr/src/app/package.json RUN yarn config set "strict-ssl" false -g -RUN yarn install +RUN yarn install --network-timeout 1000000 # copy only required files to not trigger rebuilding every time COPY ./certs /usr/src/app/certs/