Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@ All notable changes to this project will be documented in this file.

## [Unreleased][unreleased]
### Fixed
- Updated Consul API to 1.2.0 to fix breaking change (removal of deprecated Script param)

### Added

### Removed

### Changed
- Upgraded base Alpine to 3.8 and go 1.10
- Upgraded go-dockerclient to 1.3.1

## [v7] - 2016-03-05
### Fixed
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.7 AS builder
FROM alpine:3.8 AS builder
COPY . /go/src/github.com/gliderlabs/registrator
RUN apk --no-cache add -t build-deps build-base go git curl \
&& apk --no-cache add ca-certificates \
Expand All @@ -12,7 +12,7 @@ RUN apk --no-cache add -t build-deps build-base go git curl \
&& rm -rf /go \
&& apk del --purge build-deps

FROM alpine:3.7
FROM alpine:3.8
COPY --from=builder /bin/registrator /bin/registrator
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
ENTRYPOINT ["/bin/registrator"]
Loading