forked from wikimedia/mediawiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c29ac74
commit f2cc366
Showing
5 changed files
with
74 additions
and
29 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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# local build artifacts that must not be included | ||
/composer.lock | ||
/node_modules | ||
/vendor | ||
.* | ||
DEVELOPERS.md | ||
Gruntfile.js | ||
package-lock.json | ||
package.json | ||
phpunit.xml.dist |
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 was deleted.
Oops, something went wrong.
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,9 @@ | ||
FROM ghcr.io/mooncellwiki/php:latest | ||
|
||
VOLUME [ "/var/www/html/etc" ] | ||
|
||
COPY . /var/www/html/ | ||
|
||
WORKDIR /var/www/html/ | ||
|
||
RUN composer install --no-dev |
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 @@ | ||
FROM ghcr.io/mooncellwiki/mw:latest as builder | ||
FROM nginx:1.25 | ||
COPY --from=builder /var/www/html/ /var/www/html/ |