mirror of
https://github.com/strongdm/comply
synced 2025-12-15 19:00:50 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ef7a4092a7 | ||
|
|
9bcc88eebc | ||
|
|
edd3c7dd44 |
@@ -6,7 +6,10 @@ MAINTAINER Comply <comply@strongdm.com>
|
|||||||
RUN apt-get update -y \
|
RUN apt-get update -y \
|
||||||
&& apt-get install -y curl
|
&& apt-get install -y curl
|
||||||
|
|
||||||
ENV COMPLY_VERSION "1.3.7"
|
ARG COMPLY_VERSION
|
||||||
|
ENV COMPLY_VERSION ${COMPLY_VERSION:-1.4.0}
|
||||||
|
|
||||||
|
EXPOSE 4000/tcp
|
||||||
|
|
||||||
# install comply binary
|
# install comply binary
|
||||||
RUN curl -J -L -o /tmp/comply.tgz https://github.com/strongdm/comply/releases/download/v${COMPLY_VERSION}/comply-v${COMPLY_VERSION}-linux-amd64.tgz \
|
RUN curl -J -L -o /tmp/comply.tgz https://github.com/strongdm/comply/releases/download/v${COMPLY_VERSION}/comply-v${COMPLY_VERSION}-linux-amd64.tgz \
|
||||||
|
|||||||
3
Makefile
3
Makefile
@@ -111,6 +111,9 @@ minor-release: release-env minor release
|
|||||||
$(eval VERSION := $(shell git describe --tags --always --dirty="-dev"))
|
$(eval VERSION := $(shell git describe --tags --always --dirty="-dev"))
|
||||||
curl -X POST --data-urlencode 'payload={"channel": "#release", "username": "release", "text": "comply $(VERSION) released", "icon_emoji": ":shipit:"}' https://hooks.slack.com/services/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
|
curl -X POST --data-urlencode 'payload={"channel": "#release", "username": "release", "text": "comply $(VERSION) released", "icon_emoji": ":shipit:"}' https://hooks.slack.com/services/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
|
||||||
|
|
||||||
|
docker-release:
|
||||||
|
docker build --build-arg COMPLY_VERSION=`cat VERSION` -t strongdm/comply .
|
||||||
|
|
||||||
patch: clean gitsem
|
patch: clean gitsem
|
||||||
gitsem -m "increment patch for release (via Makefile)" patch
|
gitsem -m "increment patch for release (via Makefile)" patch
|
||||||
git push
|
git push
|
||||||
|
|||||||
@@ -94,7 +94,7 @@ func Build(output string, live bool) error {
|
|||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
http.Handle("/", http.FileServer(http.Dir(filepath.Join(".", "output"))))
|
http.Handle("/", http.FileServer(http.Dir(filepath.Join(".", "output"))))
|
||||||
err := http.ListenAndServe(fmt.Sprintf("127.0.0.1:%d", ServePort), nil)
|
err := http.ListenAndServe(fmt.Sprintf("0.0.0.0:%d", ServePort), nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user