1
0
Fork 0
mirror of https://github.com/24eme/signaturepdf synced 2024-05-21 15:16:37 +02:00

Install PHP extension gettext in Docker Image.

Added a Docker Compose file.
This commit is contained in:
Grégory BITTAN 2023-09-20 10:01:31 +02:00
parent fb90557ffc
commit 0fb808df43
2 changed files with 7 additions and 0 deletions

View file

@ -10,6 +10,7 @@ ENV PDF_DEMO_LINK=true
RUN apt update && \
apt install -y gettext-base librsvg2-bin pdftk imagemagick potrace && \
docker-php-ext-install gettext && \
rm -rf /var/lib/apt/lists/*
COPY . /usr/local/signaturepdf

6
compose.yaml Normal file
View file

@ -0,0 +1,6 @@
version: '3.7'
services:
signaturepdf:
build: .
ports:
- "8080:80"