mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 08:45:45 +00:00
12 lines
250 B
Docker
12 lines
250 B
Docker
![]() |
FROM php:latest
|
||
|
|
||
|
RUN apt-get update && apt-get install -y \
|
||
|
libicu-dev \
|
||
|
&& docker-php-ext-install intl
|
||
|
|
||
|
COPY --from=composer /usr/bin/composer /usr/bin/composer
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get upgrade -y && \
|
||
|
apt-get install -y git
|