hapistrano 0.3.9.1 → 0.3.9.2
raw patch · 3 files changed
+10/−4 lines, 3 filesnew-uploaderPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- Dockerfile +5/−3
- hapistrano.cabal +1/−1
CHANGELOG.md view
@@ -1,3 +1,7 @@+## 0.3.9.2+### Changed+* Update Docker base image from alpine:3.7 to alpine:3.9+ ## 0.3.9.1 ### Added * Add timestamp to output commands:
Dockerfile view
@@ -1,5 +1,5 @@ # Build Hapistrano-FROM alpine:3.7 as build-env+FROM alpine:3.9 as build-env MAINTAINER Javier Casas <jcasas@stackbuilders.com> @@ -42,11 +42,13 @@ RUN upx /hapistrano/dist/build/hap/hap # Copy Hapistrano to a basic Alpine with SSH-FROM alpine:3.7+FROM alpine:3.9 RUN apk update \ && apk add \- openssh-client+ openssh-client \+ ca-certificates \+ git RUN mkdir ~/.ssh
hapistrano.cabal view
@@ -1,5 +1,5 @@ name: hapistrano-version: 0.3.9.1+version: 0.3.9.2 synopsis: A deployment library for Haskell applications description: .