1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-01-16 21:08:13 +01:00
guzzle/Dockerfile

15 lines
349 B
Docker
Raw Permalink Normal View History

FROM composer:latest as setup
WORKDIR /guzzle
RUN set -xe \
&& composer init --name=guzzlehttp/test --description="Simple project for testing Guzzle scripts" --author="Márk Sági-Kazár <mark.sagikazar@gmail.com>" --no-interaction \
&& composer require guzzlehttp/guzzle
2019-05-12 13:11:06 +01:00
FROM php:7.3
WORKDIR /guzzle
COPY --from=setup /guzzle /guzzle