mirror of
https://github.com/github-tijlxyz/khatru-pyramid.git
synced 2025-04-18 18:01:18 +00:00
12 lines
239 B
Docker
12 lines
239 B
Docker
FROM golang:1.23 AS builder
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN go build -o khatru-invite .
|
|
|
|
FROM ubuntu:latest
|
|
COPY --from=builder /app/khatru-invite /app/
|
|
ENV DATABASE_PATH="/app/db"
|
|
ENV USERDATA_PATH="/app/users.json"
|
|
CMD ["/app/khatru-invite"]
|
|
|