Skip to content

Commit 1587ecf

Browse files
committed
updated goreleaser and docker images
1 parent a5c5072 commit 1587ecf

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

dockerfiles/amd64/Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
FROM alpine:3.7
1+
FROM alpine:3.9
22
RUN apk --no-cache add ca-certificates
3-
RUN apk update && apk add rsync
43
COPY rxtx /
54
WORKDIR /
65
ENTRYPOINT ["/rxtx"]

dockerfiles/arm32v6/Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
FROM arm32v6/alpine:3.7
1+
FROM arm32v6/alpine:3.9
22
RUN apk --no-cache add ca-certificates
3-
RUN apk update && apk add rsync
43
COPY rxtx /
54
WORKDIR /
65
ENTRYPOINT ["/rxtx"]

goreleaser.yml

+11-10
Original file line numberDiff line numberDiff line change
@@ -46,21 +46,22 @@ dockers:
4646
goos: linux
4747
goarch: amd64
4848
goarm: ''
49-
binary: rxtx
50-
image: txn2/rxtx
49+
binaries:
50+
- rxtx
51+
image_templates:
52+
- 'txn2/rxtx:latest'
53+
- 'txn2/rxtx:{{ .Version }}'
5154
dockerfile: dockerfiles/amd64/Dockerfile
52-
tag_templates:
53-
- latest
54-
- "{{ .Version }}"
5555
-
5656
goos: linux
5757
goarch: arm
5858
goarm: 6
59-
binary: rxtx
60-
image: txn2/rxtx
59+
binaries:
60+
- rxtx
61+
image_templates:
62+
- 'txn2/rxtx:latest'
63+
- 'txn2/rxtx:{{ .Version }}'
6164
dockerfile: dockerfiles/arm32v6/Dockerfile
62-
tag_templates:
63-
- "arm32v6-{{ .Version }}"
6465

6566
brew:
6667
name: rxtx
@@ -77,4 +78,4 @@ brew:
7778

7879
homepage: https://github.com/txn2/rxtx
7980

80-
description: "Data queuing and transmission."
81+
description: "Data queuing, batching and re-transmission."

0 commit comments

Comments
 (0)