From 9283322dbbdb3a830aab2c9edd131888f3315e32 Mon Sep 17 00:00:00 2001 From: Evrard Van Espen Date: Thu, 20 Nov 2025 13:22:03 +0000 Subject: [PATCH] Add Dockerfile --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..08141cf --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM archlinux as builder + +RUN pacman -Syy \ + && pacman -S --noconfirm go dart-sass icu + +COPY . /app +WORKDIR /app + +RUN go run . + +FROM nginx:alpine + +RUN rm -rf /usr/share/nginx/html/ + +COPY --from=builder /app/build/ /usr/share/nginx/html/ + +EXPOSE 80