mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 05:29:51 +00:00
10 lines
145 B
Plaintext
10 lines
145 B
Plaintext
FROM golang:1.22-alpine
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ../. /app/
|
|
|
|
RUN go build -o certimate
|
|
|
|
ENTRYPOINT ["./certimate", "serve", "--http", "0.0.0.0:8090"] |