Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile - github.com/erikdubbelboer/phpRedisAdmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a82667c47db16498164c3ceedc211c7e7acf6b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM composer:2.2

ENV TINI_VERSION 0.19.0-r0

RUN apk add --no-cache tini=$TINI_VERSION tzdata

ADD . /src/app/

WORKDIR /src/app

RUN composer install

RUN cp includes/config.environment.inc.php includes/config.inc.php

EXPOSE 80
ENTRYPOINT [ "tini", "--", "php", "-S", "0.0.0.0:80" ]