Skip to content

Commit

Permalink
add guac ubi dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulf Lilleengen committed Aug 22, 2023
1 parent 223301b commit 2b9d306
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions dockerfiles/Dockerfile.guac-ubi
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM docker.io/library/golang:1.19 as builder
ADD . /go/src/github.com/guacsec/guac/
WORKDIR /go/src/github.com/guacsec/guac/
RUN rm -rf bin/ && make build

FROM registry.access.redhat.com/ubi9/ubi-minimal:latest
RUN microdnf install -y tar gzip
WORKDIR /root
COPY --from=builder /go/src/github.com/guacsec/guac/bin/ /opt/guac/

0 comments on commit 2b9d306

Please sign in to comment.