mirror of
https://github.com/rocky-linux/srpmproc.git
synced 2024-12-04 18:36:26 +00:00
[docker] Add Dockerfile
This commit is contained in:
parent
70a1ef3acc
commit
777015bb1d
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
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"]
|
Loading…
Reference in New Issue
Block a user