mirror of
https://github.com/XTLS/RealiTLScanner.git
synced 2026-09-22 22:28:08 +03:00
10 lines
231 B
Docker
10 lines
231 B
Docker
FROM golang:1.26-alpine AS build
|
|
WORKDIR /src
|
|
COPY . .
|
|
RUN go build -o RealiTLScanner .
|
|
|
|
FROM alpine:latest
|
|
RUN apk add --no-cache ca-certificates
|
|
WORKDIR /app
|
|
COPY --from=build /src/RealiTLScanner .
|
|
ENTRYPOINT ["./RealiTLScanner"] |