UI Docker

This commit is contained in:
2022-11-09 15:22:36 -03:00
parent b919033d62
commit b3115be4f2
3 changed files with 48 additions and 0 deletions

8
ui/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM php:8-fpm
RUN apt-get update \
&& apt-get install -y libc-client-dev libkrb5-dev git libzip-dev unzip \
&& rm -r /var/lib/apt/lists/* \
&& docker-php-ext-install zip
WORKDIR /app/ui