1
0
Fork 0

moved comments to top of the file and updated deprecated maintainer instruction with appropriate label

pull/694/head
jakobblume 2018-12-12 16:00:56 +01:00
parent d7acf8b0bf
commit c76264faa2
1 changed files with 3 additions and 4 deletions

View File

@ -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