mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-18 16:07:10 +00:00
Updated Agent Dockerfile
This commit is contained in:
parent
78c844b1fe
commit
cba70d5aef
@ -1,25 +1,25 @@
|
|||||||
# --- Build Stage ---
|
# --- Build Stage ---
|
||||||
FROM golang:1.24-alpine AS builder
|
FROM golang:1.19-alpine AS builder
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
ENV GO111MODULE=on
|
ENV GO111MODULE=on
|
||||||
|
|
||||||
COPY go.mod go.sum ./
|
COPY go.mod go.sum ./
|
||||||
RUN go mod download
|
RUN go mod download
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
RUN go build -o app .
|
RUN go build -o app ./cmd/agent
|
||||||
|
|
||||||
# --- Run Stage ---
|
# --- Run Stage ---
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
|
|
||||||
RUN apk --no-cache add ca-certificates
|
RUN apk --no-cache add ca-certificates
|
||||||
|
|
||||||
WORKDIR /root/
|
WORKDIR /root/
|
||||||
|
|
||||||
COPY --from=builder /app/app .
|
COPY --from=builder /app/app .
|
||||||
|
|
||||||
CMD ["./app"]
|
CMD ["./app"]
|
||||||
|
|
||||||
Loading…
x
Reference in New Issue
Block a user