From 62d524f6010cc1ed37214c511459a1f27029b6d7 Mon Sep 17 00:00:00 2001
From: ledgerwatch <akhounov@gmail.com>
Date: Wed, 8 Dec 2021 23:32:24 +0000
Subject: [PATCH] Update Dockerfile

---
 Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index b712ffa26..db4122f23 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
 # syntax=docker/dockerfile:1
-FROM golang:1.17-alpine AS builder
+FROM docker.io/library/golang:1.17-alpine3.14 AS builder
 
 RUN apk --no-cache add make gcc g++ linux-headers git bash ca-certificates libgcc libstdc++
 
@@ -9,7 +9,7 @@ ADD . .
 # expect that host run `git submodule update --init`
 RUN make erigon rpcdaemon integration sentry hack db-tools
 
-FROM alpine:latest
+FROM docker.io/library/alpine:3.14
 
 RUN apk add --no-cache ca-certificates libgcc libstdc++ tzdata
 COPY --from=builder /app/build/bin/* /usr/local/bin/