mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 13:37:59 +01:00
ff57ce54dd
- !! NEW DOCKER FILES :D !! - getid3 is now vendored from composer! :D - fix elasticsearch for use with newer versions - fix some migration issues by yeeting a migration that has had its day - fix our asset pipeline (webpack / gulp)
7 lines
156 B
Docker
7 lines
156 B
Docker
FROM php:8.0-fpm-alpine
|
|
|
|
RUN docker-php-ext-install mysqli pdo pdo_mysql
|
|
|
|
COPY --from=composer /usr/bin/composer /usr/bin/composer
|
|
|
|
ENTRYPOINT ["composer"]
|