forked from mendix/docker-mendix-buildpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
19 lines (16 loc) · 639 Bytes
/
Makefile
File metadata and controls
19 lines (16 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
get-sample:
if [ -d build ]; then rm -rf build; fi
if [ -d downloads ]; then rm -rf downloads; fi
mkdir -p downloads build
wget https://s3-eu-west-1.amazonaws.com/mx-buildpack-ci/BuildpackTestApp-mx-7-16.mda -O downloads/application.mpk
unzip downloads/application.mpk -d build/
build-image:
docker build \
--build-arg BUILD_PATH=build \
-t mendix/mendix-buildpack:v1.3 .
test-container:
tests/test-generic.sh tests/docker-compose-postgres.yml
tests/test-generic.sh tests/docker-compose-sqlserver.yml
tests/test-generic.sh tests/docker-compose-azuresql.yml
run-container:
docker-compose -f tests/docker-compose-mysql.yml up