You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM alpine:3.7
|
|
|
|
RUN apk add --no-cache php5-cli php5-curl php5-gd php5-phar php5-json php5-openssl php5-dom
|
|
|
|
COPY php-curl-test php-curl-test
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["php5", "-S", "0.0.0.0:80", "-t", "php-curl-test"]
|
|
|