mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
13 lines
275 B
Docker
13 lines
275 B
Docker
FROM php:7.2-fpm
|
|
|
|
COPY --from=composer /usr/bin/composer /usr/bin/composer
|
|
|
|
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y nodejs
|
|
|
|
RUN apt-get update && \
|
|
apt-get upgrade -y && \
|
|
apt-get install -y git vim
|