Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
270
Merge Requests
34
CI / CD
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Commits
77aab6cf
Commit
77aab6cf
authored
19 minutes ago
by
Emiliano Balbuena
Browse files
Options
Download
(feat): PHPSpec container
parent
cabacdba
goal/local-infra
1 merge request
!457
WIP: Local infrastructure provisioner (engine)
Pipeline
#116966979
failed with stages
in 8 minutes and 6 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
containers/phpspec/Dockerfile
0 → 100644
View file @
77aab6cf
FROM
minds/php:7.3
WORKDIR
/var/www/Minds/engine
COPY
./containers/phpspec/phpspec.sh /var/www/Minds/phpspec.sh
ENTRYPOINT
[ "../phpspec.sh" ]
CMD
["run", "--format=pretty", "--no-code-generation"]
This diff is collapsed.
containers/phpspec/phpspec.sh
0 → 100644
View file @
77aab6cf
#!/bin/sh
set
-e
cd
/var/www/Minds/engine
php
-n
-c
Spec/php-test.ini bin/phpspec
$@
This diff is collapsed.
Please
register
or
sign in
to comment