mapguesser/docker/Dockerfile-test
Pőcze Bence 8b215edeef
Some checks failed
mapguesser/pipeline/pr-develop There was a failure building this commit
default-pipeline default-pipeline #15
add Jenkinsfile and Dockerfile-test
2021-12-22 01:49:10 +01:00

8 lines
245 B
Plaintext

FROM php:7.4.7-cli-buster
RUN apt-get update && apt-get install -y unzip
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
COPY composer.* /composer/
RUN cd /composer/ && composer install