From 4d630c85f856e42b632afc95ae3a257a192e66a1 Mon Sep 17 00:00:00 2001 From: Sam Johnson Date: Mon, 30 Dec 2024 19:15:03 -0700 Subject: [PATCH] Update Dockerfile to v3.20/main and edge/community The latest version of TaskWarrior 3.3.0 is only available in edge/community. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9de206b..b2baa90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM alpine:latest -RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories +RUN echo "https://dl-cdn.alpinelinux.org/alpine/v3.20/main" > /etc/apk/repositories +RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories RUN apk --no-cache add nodejs npm nginx task3 python3 build-base COPY ./frontend /src/frontend