mobmash.click/local-dev/Dockerfile

14 lines
236 B
Text
Raw Normal View History

2024-08-07 21:26:27 +00:00
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"]