summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile27
1 files changed, 0 insertions, 27 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index c857515f..00000000
--- a/Dockerfile
+++ /dev/null
@@ -1,27 +0,0 @@
-FROM golang:1.14.3 as builder
-
-COPY . /src
-
-WORKDIR /src
-
-RUN set -x \
- && apt-get update -y \
- && apt-get install -y bash git \
- && go version \
- && bash ./build.sh \
- && test -f ./.rr.yaml
-
-FROM alpine:latest
-
-LABEL \
- org.opencontainers.image.title="roadrunner" \
- org.opencontainers.image.description="High-performance PHP application server, load-balancer and process manager" \
- org.opencontainers.image.url="https://github.com/spiral/roadrunner" \
- org.opencontainers.image.source="https://github.com/spiral/roadrunner" \
- org.opencontainers.image.vendor="SpiralScout" \
- org.opencontainers.image.licenses="MIT"
-
-COPY --from=builder /src/rr /usr/bin/rr
-COPY --from=builder /src/.rr.yaml /etc/rr.yaml
-
-ENTRYPOINT ["/usr/bin/rr"]