From e1c6ea9e21eeeb58356c22e6df6fb04a7fb4f64d Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sun, 8 Jan 2023 15:04:19 -0800 Subject: [PATCH] Temporarily disable running Owncast under new user in #2496 --- Earthfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Earthfile b/Earthfile index 89b4f81b3..810779018 100644 --- a/Earthfile +++ b/Earthfile @@ -113,8 +113,11 @@ docker: WORKDIR /app COPY --platform=$TARGETPLATFORM +package/owncast.zip /app RUN unzip -x owncast.zip && mkdir data - RUN chown -R owncast:owncast /app - USER owncast + + # temporarily disable until we figure out how to move forward + # RUN chown -R owncast:owncast /app + # USER owncast + ENTRYPOINT ["/app/owncast"] EXPOSE 8080 1935 SAVE IMAGE --push $image:$tag