16 lines
436 B
Docker
16 lines
436 B
Docker
# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
|
|
# Copyright 2025 TimeHexOn & foxhop & russell@unturf
|
|
# https://www.permacomputer.com
|
|
|
|
# V language (checked 2025-10-13: thevlang/vlang:latest is current)
|
|
FROM thevlang/vlang:latest AS builder
|
|
|
|
WORKDIR /app
|
|
COPY v.mod uncloseai.v ./
|
|
RUN v -prod uncloseai.v
|
|
|
|
FROM alpine:latest
|
|
RUN apk add --no-cache ca-certificates
|
|
COPY --from=builder /app/uncloseai /usr/local/bin/uncloseai
|
|
|
|
CMD ["uncloseai"]
|