mirror of
https://github.com/rocky-linux/srpmproc.git
synced 2024-11-15 01:31:24 +00:00
10 lines
219 B
Docker
10 lines
219 B
Docker
|
FROM golang:1.15.6-alpine
|
||
|
COPY . /src
|
||
|
WORKDIR /src
|
||
|
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build ./cmd/srpmproc
|
||
|
|
||
|
FROM centos:8.3.2011
|
||
|
COPY --from=0 /src/srpmproc /usr/bin/srpmproc
|
||
|
|
||
|
ENTRYPOINT ["/usr/bin/srpmproc"]
|