We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0b0760 commit 15fbcf5Copy full SHA for 15fbcf5
2 files changed
.github/workflows/ci.yml
@@ -67,6 +67,10 @@ jobs:
67
username: ${{ secrets.DOCKER_USER }}
68
password: ${{ secrets.DOCKER_PASSWORD }}
69
70
+ - name: Build manifests
71
+ run: |
72
+ echo "Re-tagging latest"
73
+ docker buildx imagetools create -t ${{ secrets.DOCKER_USER }}/zh-hans.react.dev:latest
74
75
- name: Build and push image:latest
76
uses: docker/build-push-action@v3
Dockerfile
@@ -9,7 +9,7 @@ WORKDIR /app
9
# Install dependencies based on the preferred package manager
10
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
11
12
-RUN yarn install --ignore-engines
+RUN yarn install --ignore-engines --network-timeout 1000000
13
# RUN yarn --frozen-lockfile
14
# RUN \
15
# if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
0 commit comments