diff options
author | Valery Piashchynski <[email protected]> | 2022-01-19 09:48:50 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-01-19 09:48:50 +0300 |
commit | 1b451b0e9e3c6970ee1ed5aec94ee0ffcf008f4e (patch) | |
tree | de6f408173dcc82837aebe4062980ed47fbe1aaa /Dockerfile | |
parent | 37a9130e5cf7be4f8ddf7aa3c71d24cd2c937b3c (diff) |
Update Dockerfile, add plugins_test
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -16,9 +16,11 @@ ENV LDFLAGS="-s \ -X github.com/roadrunner-server/roadrunner/v2/internal/meta.buildTime=$BUILD_TIME" # compile binary file -RUN set -x \ - && CGO_ENABLED=0 go build -trimpath -ldflags "$LDFLAGS" -o ./rr ./cmd/rr \ - && ./rr -v +RUN set -x +RUN go mod download +RUN go mod tidy +RUN CGO_ENABLED=0 go build -trimpath -ldflags "$LDFLAGS" -o ./rr ./cmd/rr +RUN ./rr -v # Image page: <https://hub.docker.com/_/alpine> # https://alpinelinux.org/posts/Alpine-3.13.4-released.html @@ -31,7 +33,7 @@ ARG BUILD_TIME="undefined" LABEL \ org.opencontainers.image.title="roadrunner" \ - org.opencontainers.image.description="High-performance PHP application server, load-balancer and process manager" \ + org.opencontainers.image.description="High-performance PHP application server, load-balancer, process manager written in Go and powered with plugins" \ org.opencontainers.image.url="https://github.com/roadrunner-server/roadrunner" \ org.opencontainers.image.source="https://github.com/roadrunner-server/roadrunner" \ org.opencontainers.image.vendor="SpiralScout" \ |