-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #233 from CodeForPhilly/develop
Release: v3.0.2
- Loading branch information
Showing
10 changed files
with
110 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[holobranch] | ||
extend = "docs-site" | ||
lens = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[holomapping] | ||
holosource="=>fixtures" | ||
files = "**" | ||
before = "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[holomapping] | ||
holosource="=>helm-chart" | ||
files = "**" | ||
before = "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[holosource] | ||
url = "https://github.com/JarvusInnovations/emergence-skeleton-v2" | ||
ref = "refs/tags/v2.6.12" | ||
ref = "refs/tags/v2.7.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# This Dockerfile is hyper-optimized to minimize layer changes | ||
|
||
FROM jarvus/habitat-compose:latest as habitat | ||
|
||
ARG HAB_LICENSE=no-accept | ||
ENV HAB_LICENSE=$HAB_LICENSE | ||
ENV STUDIO_TYPE=Dockerfile | ||
ENV HAB_ORIGIN=codeforphilly | ||
RUN hab origin key generate | ||
|
||
# pre-layer all external runtime plan deps | ||
COPY habitat/plan.sh /habitat/plan.sh | ||
RUN hab pkg install \ | ||
core/bash \ | ||
emergence/php-runtime \ | ||
$({ cat '/habitat/plan.sh' && echo && echo 'echo "${pkg_deps[@]/$pkg_origin\/*/}"'; } | hab pkg exec core/bash bash) \ | ||
&& hab pkg exec core/coreutils rm -rf /hab/cache/{artifacts,src}/ | ||
|
||
# pre-layer all external runtime composite deps | ||
COPY habitat/composite/plan.sh /habitat/composite/plan.sh | ||
RUN hab pkg install \ | ||
jarvus/habitat-compose \ | ||
emergence/nginx \ | ||
$({ cat '/habitat/composite/plan.sh' && echo && echo 'echo "${pkg_deps[@]/$pkg_origin\/*/} ${composite_mysql_pkg}"'; } | hab pkg exec core/bash bash) \ | ||
&& hab pkg exec core/coreutils rm -rf /hab/cache/{artifacts,src}/ | ||
|
||
|
||
FROM habitat as projector | ||
|
||
# pre-layer all build-time plan deps | ||
RUN hab pkg install \ | ||
core/hab-plan-build \ | ||
jarvus/hologit \ | ||
jarvus/toml-merge \ | ||
$({ cat '/habitat/plan.sh' && echo && echo 'echo "${pkg_build_deps[@]/$pkg_origin\/*/}"'; } | hab pkg exec core/bash bash) \ | ||
&& hab pkg exec core/coreutils rm -rf /hab/cache/{artifacts,src}/ | ||
|
||
# pre-layer all build-time composite deps | ||
RUN hab pkg install \ | ||
jarvus/toml-merge \ | ||
$({ cat '/habitat/composite/plan.sh' && echo && echo 'echo "${pkg_build_deps[@]/$pkg_origin\/*/}"'; } | hab pkg exec core/bash bash) \ | ||
&& hab pkg exec core/coreutils rm -rf /hab/cache/{artifacts,src}/ | ||
|
||
# build application | ||
COPY . /src | ||
ARG SITE_TREE | ||
ENV SITE_TREE=$SITE_TREE | ||
ARG SITE_VERSION | ||
ENV SITE_VERSION=$SITE_VERSION | ||
RUN hab pkg exec core/hab-plan-build hab-plan-build /src | ||
RUN hab pkg exec core/hab-plan-build hab-plan-build /src/habitat/composite | ||
|
||
|
||
FROM habitat as runtime | ||
|
||
# configure persistent volumes | ||
RUN hab pkg exec core/coreutils mkdir -p '/hab/svc/mysql/data' '/hab/svc/laddr/data' '/hab/svc/nginx/files' \ | ||
&& hab pkg exec core/coreutils chown hab:hab -R '/hab/svc/mysql/data' '/hab/svc/laddr/data' '/hab/svc/nginx/files' | ||
|
||
# configure entrypoint | ||
VOLUME ["/hab/svc/mysql/data", "/hab/svc/laddr/data", "/hab/svc/nginx/files"] | ||
ENTRYPOINT ["hab", "sup", "run"] | ||
CMD ["codeforphilly/laddr-composite"] | ||
|
||
# install .hart artifact from builder stage | ||
COPY --from=projector /hab/cache/artifacts/$HAB_ORIGIN-* /hab/cache/artifacts/ | ||
RUN hab pkg install /hab/cache/artifacts/$HAB_ORIGIN-* \ | ||
&& hab pkg exec core/coreutils rm -rf /hab/cache/{artifacts,src}/ | ||
|
||
# add source metadata to environment | ||
ARG SOURCE_TAG | ||
ENV SOURCE_TAG=$SOURCE_TAG | ||
ARG SOURCE_COMMIT | ||
ENV SOURCE_COMMIT=$SOURCE_COMMIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[services.app.config] | ||
default_timezone = "America/New_York" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
composite_app_pkg_name=laddr | ||
pkg_name="${composite_app_pkg_name}-composite" | ||
pkg_origin=codeforphilly | ||
pkg_maintainer="Code for Philly <[email protected]>" | ||
pkg_scaffolding=emergence/scaffolding-composite | ||
composite_mysql_pkg=core/mysql | ||
|
||
pkg_version() { | ||
scaffolding_detect_pkg_version | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[sites.default] | ||
database = "laddr" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
pkg_name=laddr | ||
pkg_origin=codeforphilly | ||
pkg_maintainer="Code for Philly <[email protected]>" | ||
pkg_scaffolding=emergence/scaffolding-site | ||
|
||
pkg_version() { | ||
scaffolding_detect_pkg_version | ||
} |