File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 10
10
.styleci.yml
11
11
.travis.yml
12
12
changelog.md
13
+ docker /README.md
13
14
Dockerfile
14
15
LICENSE
15
16
README.md
Original file line number Diff line number Diff line change @@ -5,11 +5,16 @@ ARG PHP_VERSION=7.4-alpine${ALPINE_VERSION}
5
5
ARG COMPOSER_VERSION=2.1
6
6
ARG SUPERVISORD_VERSION=v0.7.3
7
7
8
+ ARG UID=1000
9
+ ARG GID=1000
10
+
8
11
FROM --platform=${BUILDPLATFORM} composer:${COMPOSER_VERSION} AS build-composer
9
12
FROM composer:${COMPOSER_VERSION} AS composer
10
13
FROM qmcgaw/binpot:supervisord-${SUPERVISORD_VERSION} AS supervisord
11
14
12
15
FROM --platform=${BUILDPLATFORM} php:${PHP_VERSION} AS vendor
16
+ ARG UID=1000
17
+ ARG GID=1000
13
18
COPY --from=build-composer --chown=${UID}:${GID} /usr/bin/composer /usr/bin/composer
14
19
RUN apk add --no-cache unzip
15
20
WORKDIR /srv
@@ -26,7 +31,6 @@ RUN php artisan key:generate
26
31
ENTRYPOINT [ "/srv/vendor/bin/phpunit" ]
27
32
28
33
FROM alpine:${ALPINE_VERSION}
29
-
30
34
ARG UID=1000
31
35
ARG GID=1000
32
36
You can’t perform that action at this time.
0 commit comments