We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9042514 + 778ffdd commit ccff888Copy full SHA for ccff888
.github/workflows/front.yml
@@ -78,7 +78,7 @@ jobs:
78
tags: |
79
${{ env.image }}
80
cache-from: type=local,src=/tmp/.buildx-cache
81
- cache-to: type=local,dest=/tmp/.buildx-cache-new
+ cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
82
83
- name: Move cache
84
run: |
docker/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:16-alpine3.16 as builder
+FROM node:16-alpine3.16 as dependencies
2
3
ARG GH_BACKEND_URL
4
ARG GH_IPFS_URL
@@ -16,6 +16,8 @@ COPY package.json yarn.lock* ./
16
17
RUN yarn install
18
19
+FROM dependencies as builder
20
+
21
COPY . .
22
23
RUN set -x \
0 commit comments