From 869b6b12aeae2ef2963d07606e66ab071064d6e3 Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Mon, 2 Oct 2023 13:36:24 +0530 Subject: [PATCH] feat: import from ftest-control/targets/gotosocial --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a71d6c7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM superseriousbusiness/gotosocial:latest as upstream + +FROM alpine:3.17.2 as executor +USER 1001:1001 +WORKDIR "/gotosocial/storage" +WORKDIR "/gotosocial" +COPY --chown=1001:1001 --from=upstream /gotosocial /gotosocial +VOLUME [ "/gotosocial/config" ]