Initial WebGIS portal project
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
FROM php:8.2-apache
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends libcurl4-openssl-dev \
|
||||
&& docker-php-ext-install pdo_mysql mysqli curl \
|
||||
&& a2enmod rewrite \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /var/www/html
|
||||
|
||||
COPY . /var/www/html/
|
||||
|
||||
RUN mkdir -p /var/www/html/Leaflet2/uploads/bukti \
|
||||
&& chown -R www-data:www-data /var/www/html/Leaflet2/uploads
|
||||
|
||||
EXPOSE 80
|
||||
Reference in New Issue
Block a user