test: start work on Pale Moon tests

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso
2025-07-24 09:32:16 -04:00
parent 21f570962c
commit 7d60a0a77a
12 changed files with 88 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM golang:alpine AS build
RUN go install github.com/mattn/goreman@latest
FROM debian:latest AS run
RUN apt-get update -y && \
apt-get install -y tigervnc-standalone-server dwm xterm && \
rm -rf /var/lib/apt/lists
ENV VNC_DESKTOP_NAME="Xtigervnc"
ENV VNC_GEOMETRY=1280x800
COPY app/ /app/
COPY --from=build /go/bin/goreman /usr/bin/goreman
CMD ["/app/main.sh"]