This commit is contained in:
2025-12-07 15:36:48 -05:00
parent 8b283ef467
commit a61abf0d4c
5 changed files with 96 additions and 26 deletions

View File

@@ -1,17 +0,0 @@
FROM golang:1.21 AS builder
WORKDIR /app
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
RUN git clone https://git.vxserver.dev/fSD/fes.git .
RUN go build -o fes
FROM debian:bullseye-slim
WORKDIR /app
COPY --from=builder /app/fes .
ENTRYPOINT ["./fes"]