Files
trading/Dockerfile
jbergner 2e511e3fca
All checks were successful
release-tag / release-image (push) Successful in 2m58s
fix 2
2025-07-22 17:31:44 +02:00

29 lines
747 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.

# -------- Dockerfile (Multi-Stage Build) --------
# 1. Builder-Stage
FROM golang:1.24-alpine AS builder
WORKDIR /app
COPY go.* ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /bin/sctradingtool
# 2. Runtime-Stage
FROM alpine:3.20
# HTTPS-Callouts in Alpine brauchen ca-certificates
RUN apk add --no-cache ca-certificates
RUN mkdir /data
COPY --from=builder /bin/sctradingtool /bin/sctradingtool
COPY ./static /data/static
# Default listens on :8080 siehe main.go
EXPOSE 8080
# Environment defaults; können per compose überschrieben werden
ENV REDIS_ADDR=redis:6379 \
BLOCKLIST_MODE=slave \
HASH_NAME=bl:manual \
MASTER_URL=https://flod-proxy.send.nrw
ENTRYPOINT ["/bin/sctradingtool"]