mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +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
|