Increment alpine image version
This commit is contained in:
parent
9b8cf9d4c8
commit
6c2a5357d8
|
@ -1,4 +1,4 @@
|
||||||
FROM node:16.13.0-alpine3.14 AS builder
|
FROM node:16.14.0-alpine3.15 AS builder
|
||||||
WORKDIR /otterscan-build
|
WORKDIR /otterscan-build
|
||||||
COPY ["package.json", "package-lock.json", "/otterscan-build/"]
|
COPY ["package.json", "package-lock.json", "/otterscan-build/"]
|
||||||
RUN npm install
|
RUN npm install
|
||||||
|
@ -7,7 +7,7 @@ COPY ["public", "/otterscan-build/public/"]
|
||||||
COPY ["src", "/otterscan-build/src/"]
|
COPY ["src", "/otterscan-build/src/"]
|
||||||
RUN npm run build
|
RUN npm run build
|
||||||
|
|
||||||
FROM alpine:3.14.0 AS logobuilder
|
FROM alpine:3.15.0 AS logobuilder
|
||||||
RUN apk add imagemagick parallel
|
RUN apk add imagemagick parallel
|
||||||
WORKDIR /assets
|
WORKDIR /assets
|
||||||
COPY trustwallet/blockchains/ethereum/assets /assets/1/
|
COPY trustwallet/blockchains/ethereum/assets /assets/1/
|
||||||
|
@ -15,12 +15,12 @@ COPY trustwallet/blockchains/polygon/assets /assets/137/
|
||||||
COPY trustwallet/blockchains/smartchain/assets /assets/56/
|
COPY trustwallet/blockchains/smartchain/assets /assets/56/
|
||||||
RUN find . -name logo.png | parallel magick convert {} -filter Lanczos -resize 32x32 {}; exit 0
|
RUN find . -name logo.png | parallel magick convert {} -filter Lanczos -resize 32x32 {}; exit 0
|
||||||
|
|
||||||
FROM alpine:3.14.0 AS fourbytesbuilder
|
FROM alpine:3.15.0 AS fourbytesbuilder
|
||||||
WORKDIR /signatures
|
WORKDIR /signatures
|
||||||
COPY 4bytes/signatures /signatures/
|
COPY 4bytes/signatures /signatures/
|
||||||
COPY 4bytes/with_parameter_names /signatures/
|
COPY 4bytes/with_parameter_names /signatures/
|
||||||
|
|
||||||
FROM alpine:3.14.0 AS topic0builder
|
FROM alpine:3.15.0 AS topic0builder
|
||||||
WORKDIR /topic0
|
WORKDIR /topic0
|
||||||
COPY topic0/with_parameter_names /topic0/
|
COPY topic0/with_parameter_names /topic0/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue