mapguesser/docker/Dockerfile-test
Pőcze Bence ee144f7277
Some checks failed
mapguesser/pipeline/pr-develop There was a failure building this commit
default-pipeline default-pipeline #13
add Jenkinsfile and Dockerfile-test
2021-12-22 01:44:54 +01:00

8 lines
253 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.* /tmp/workspace
RUN cd /tmp/workspace && composer install