Adding so many things.

This commit is contained in:
dan612
2026-03-22 13:23:31 -04:00
parent 7d5904e925
commit b9e362497a
10 changed files with 95 additions and 41 deletions

View File

@@ -1,15 +0,0 @@
FROM php:8.4-fpm
# Install SQLite extension and Node.js
RUN apt-get update && apt-get install -y \
sqlite3 \
libsqlite3-dev \
curl \
&& docker-php-ext-install pdo_sqlite \
&& curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \
&& apt-get install -y nodejs \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
COPY ./src .