mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-16 00:29:05 +00:00
14 lines
236 B
Text
14 lines
236 B
Text
![]() |
FROM php:8.2-cli
|
||
|
|
||
|
RUN apt -y update && apt -y upgrade
|
||
|
RUN apt -y install npm git libpq-dev
|
||
|
RUN docker-php-ext-install pdo_pgsql pgsql
|
||
|
|
||
|
WORKDIR /var/www/
|
||
|
|
||
|
COPY ./entrypoint.sh ./entrypoint.sh
|
||
|
|
||
|
EXPOSE 1337
|
||
|
|
||
|
ENTRYPOINT ["./entrypoint.sh"]
|