-
Notifications
You must be signed in to change notification settings - Fork 112
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 #313 from mendix/DEP-2467_Extend_PBAR_configuration
DEP-2467: Configuration of Nginx. Configuring location access by cert…
- Loading branch information
Showing
8 changed files
with
83 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ dist: bionic | |
|
||
language: python | ||
|
||
python: 3.6.8 | ||
python: 3.6.9 | ||
|
||
env: | ||
global: | ||
|
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
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
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,24 @@ | ||
FROM python:3.6.9 | ||
|
||
WORKDIR /home/vcap/app | ||
|
||
COPY ./requirements.in ./ | ||
COPY ./requirements-lint.in ./ | ||
COPY ./requirements-test.in ./ | ||
COPY ./Makefile ./ | ||
|
||
RUN make install_piptools \ | ||
&& pip-compile requirements.in \ | ||
&& pip-compile requirements-lint.in \ | ||
&& pip-compile requirements-test.in \ | ||
&& pip3 install -r requirements.txt \ | ||
&& pip3 install -r requirements-lint.txt \ | ||
&& pip3 install -r requirements-test.txt \ | ||
&& pip3 install nose \ | ||
&& pip3 install nose-timer \ | ||
&& pip-sync requirements.txt requirements-test.txt requirements-lint.txt | ||
|
||
RUN wget -q -O - https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | apt-key add - \ | ||
&& echo "deb https://packages.cloudfoundry.org/debian stable main" | tee /etc/apt/sources.list.d/cloudfoundry-cli.list \ | ||
&& apt-get update \ | ||
&& apt-get install cf-cli |
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,20 @@ | ||
version: '3' | ||
|
||
services: | ||
buildpack: | ||
build: | ||
context: ../ | ||
dockerfile: ./dev/Dockerfile | ||
volumes: | ||
- ../:/home/vcap/app | ||
environment: | ||
CF_ENDPOINT: ${CF_ENDPOINT} | ||
CF_USER: ${CF_USER} | ||
CF_PASSWORD: ${CF_PASSWORD} | ||
CF_ORG: ${CF_ORG} | ||
CF_SPACE: ${CF_SPACE} | ||
CF_DOMAIN: ${CF_DOMAIN} | ||
MX_PASSWORD: ${MX_PASSWORD} | ||
TEST_PREFIX: ${TEST_PREFIX} | ||
BUILDPACK: ${BUILDPACK} | ||
entrypoint: /bin/bash |
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 @@ | ||
docker-compose build | ||
docker-compose run buildpack | ||
docker-compose down |