We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7f62ad commit 705dc2bCopy full SHA for 705dc2b
Dockerfile-devel
@@ -5,7 +5,7 @@ ENV PATH=$PATH:$PROJECT_PATH/build
5
ENV CGO_ENABLED=0
6
ENV GO_EXTRA_BUILD_ARGS="-a -installsuffix cgo"
7
8
-RUN apk add --no-cache ca-certificates make git bash upx
+RUN apk add --no-cache ca-certificates make git bash upx rpm
9
10
RUN mkdir -p $PROJECT_PATH
11
COPY . $PROJECT_PATH
Makefile
@@ -26,8 +26,10 @@ dist:
26
@goreleaser
27
mkdir -p dist/upload/tar
28
mkdir -p dist/upload/deb
29
+ mkdir -p dist/upload/rpm
30
mv dist/*.tar.gz dist/upload/tar
31
mv dist/*.deb dist/upload/deb
32
+ mv dist/*.rpm dist/upload/rpm
33
34
snapshot:
35
@goreleaser --snapshot
0 commit comments