Files
ai-agent/Dockerfile
2026-03-24 08:05:24 +01:00

7 lines
206 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Minimales Runtime-Image Binary wird lokal cross-compiliert und per scp übertragen
FROM alpine:3.21
RUN apk add --no-cache ca-certificates tzdata
WORKDIR /app
COPY discord-bot .
CMD ["./discord-bot"]