mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-23 03:19:10 -04:00
15 lines
365 B
Docker
15 lines
365 B
Docker
FROM php:5.6-cli
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y git zip unzip && \
|
|
apt-get -y autoremove && \
|
|
apt-get clean && \
|
|
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer && \
|
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
WORKDIR /opt/mockery
|
|
|
|
COPY composer.json ./
|
|
|
|
RUN composer install
|