mirror of
https://github.com/stackbuilders/hapistrano.git
synced 2024-11-27 12:13:41 +03:00
Merge pull request #95 from stackbuilders/release_v0.3.5.6
Create ~/.ssh directory on the Docker image.
This commit is contained in:
commit
2aaa1d13c3
@ -1,3 +1,6 @@
|
||||
## 0.3.5.6
|
||||
* Add Dockerfile
|
||||
|
||||
## 0.3.5.5
|
||||
* Adding tested compatibility with GHC 8.4
|
||||
|
||||
|
@ -48,6 +48,8 @@ RUN apk update \
|
||||
&& apk add \
|
||||
openssh-client
|
||||
|
||||
RUN mkdir ~/.ssh
|
||||
|
||||
COPY --from=build-env /hapistrano/dist/build/hap/hap /bin/hap
|
||||
|
||||
ENTRYPOINT ["/bin/hap"]
|
||||
|
@ -156,6 +156,11 @@ A few things to note here:
|
||||
If you don't specify `host` and `targets`, `hap` will assume `localhost` as
|
||||
usually, which is mainly useful for testing.
|
||||
|
||||
## Docker
|
||||
|
||||
If you would like to use Docker, there is a lightweight image
|
||||
available on [Docker Hub](https://hub.docker.com/r/stackbuilders/hapistrano/).
|
||||
|
||||
## License
|
||||
|
||||
MIT, see [the LICENSE file](LICENSE).
|
||||
|
@ -1,5 +1,5 @@
|
||||
name: hapistrano
|
||||
version: 0.3.5.5
|
||||
version: 0.3.5.6
|
||||
synopsis: A deployment library for Haskell applications
|
||||
description:
|
||||
.
|
||||
@ -22,7 +22,7 @@ license: MIT
|
||||
license-file: LICENSE
|
||||
author: Justin Leitgeb
|
||||
maintainer: justin@stackbuilders.com
|
||||
copyright: 2015-2017 Stack Builders Inc.
|
||||
copyright: 2015-2018 Stack Builders Inc.
|
||||
category: System
|
||||
homepage: https://github.com/stackbuilders/hapistrano
|
||||
bug-reports: https://github.com/stackbuilders/hapistrano/issues
|
||||
@ -31,6 +31,7 @@ cabal-version: >=1.18
|
||||
tested-with: GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.2
|
||||
extra-source-files: CHANGELOG.md
|
||||
, README.md
|
||||
, Dockerfile
|
||||
data-files: script/clean-build.sh
|
||||
|
||||
flag dev
|
||||
|
Loading…
Reference in New Issue
Block a user