moved comments to top of the file and updated deprecated maintainer instruction with appropriate label
parent
d7acf8b0bf
commit
c76264faa2
|
@ -1,14 +1,13 @@
|
||||||
|
# Running this container will start a language server that listens for TCP connections on port 2088
|
||||||
|
# Every connection will be run in a forked child process
|
||||||
|
|
||||||
FROM composer AS builder
|
FROM composer AS builder
|
||||||
|
|
||||||
COPY ./ /app
|
COPY ./ /app
|
||||||
RUN composer install
|
RUN composer install
|
||||||
|
|
||||||
# Running this container will start a language server that listens for TCP connections on port 2088
|
|
||||||
# Every connection will be run in a forked child process
|
|
||||||
|
|
||||||
FROM php:7-cli
|
FROM php:7-cli
|
||||||
MAINTAINER Felix Becker <felix.b@outlook.com>
|
LABEL maintainer="Felix Becker <felix.b@outlook.com>"
|
||||||
|
|
||||||
RUN docker-php-ext-configure pcntl --enable-pcntl
|
RUN docker-php-ext-configure pcntl --enable-pcntl
|
||||||
RUN docker-php-ext-install pcntl
|
RUN docker-php-ext-install pcntl
|
||||||
|
|
Loading…
Reference in New Issue