From bfdc3f25e98062e0062b0d62afa93cc4a7ff6701 Mon Sep 17 00:00:00 2001 From: quasystaty Date: Fri, 26 Jul 2024 10:57:56 +0300 Subject: [PATCH] fix docker build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ea42025..fd2b0fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM node:lts-alpine as frontend -LABEL org.opencontainers.image.source https://github.com/astriaorg/seq-faucet +LABEL org.opencontainers.image.source=https://github.com/astriaorg/seq-faucet WORKDIR /frontend-build @@ -9,7 +9,7 @@ RUN yarn install COPY web ./ RUN yarn build -FROM golang:1.21-alpine as backend +FROM golang:1.22.5-alpine as backend RUN apk add --no-cache gcc musl-dev linux-headers