From 33453f8c32985c1bbbbf19c0b001d65b0122a71a Mon Sep 17 00:00:00 2001 From: Aiden Date: Tue, 14 Nov 2023 22:10:11 -0500 Subject: [PATCH] Update Dockerfile --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bfad01c..de1e580 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,11 @@ FROM node:alpine + RUN apk upgrade --no-cache -RUN apk add --no-cache git openssl go libwebp libwebp-dev alpine-sdk tzdata && \ + +COPY --from=golang:alpine /usr/local/go/ /usr/local/go/ +ENV PATH="/usr/local/go/bin:${PATH}" + +RUN apk add --no-cache git openssl libwebp libwebp-dev alpine-sdk tzdata && \ git clone https://github.com/tidbyt/pixlet && \ cd pixlet && \ make build && \