Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DRAFT: APKO build #29

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM golang:1.22 AS builder
FROM fidelissauro/apko-go:latest-amd64 AS builder

WORKDIR $GOPATH/src/chip
WORKDIR /root/src/chip

COPY . ./

Expand All @@ -13,9 +13,9 @@ RUN swag init
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main .


FROM cgr.dev/chainguard/wolfi-base:latest
FROM fidelissauro/apko-run:latest-amd64

COPY --from=builder /go/src/chip/main ./
COPY --from=builder /root/src/chip/main ./

EXPOSE 8080

Expand Down
Loading