We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc1f6c6 commit 0c2d58fCopy full SHA for 0c2d58f
docker/Dockerfile
@@ -1,22 +1,18 @@
1
ARG ROAD_RUNNER_IMAGE=2.12.3
2
ARG CENTRIFUGO_IMAGE=v4
3
+ARG FRONTEND_IMAGE_TAG=latest
4
+ARG REPOSITORY=https://github.com/buggregator/server
5
+ARG BRANCH=master
6
7
# Build centrifugo binary
8
FROM centrifugo/centrifugo:$CENTRIFUGO_IMAGE as centrifugo
-
9
# Build rr binary
10
FROM ghcr.io/roadrunner-server/roadrunner:$ROAD_RUNNER_IMAGE as rr
-ARG FRONTEND_IMAGE_TAG=latest
11
12
# Build JS files
13
FROM ghcr.io/buggregator/frontend:$FRONTEND_IMAGE_TAG as frontend
14
15
# Clone the project
16
FROM alpine/git as git
17
18
-ARG REPOSITORY=https://github.com/buggregator/server
19
-ARG BRANCH=master
20
RUN git clone -b $BRANCH $REPOSITORY /app
21
22
# Configure PHP project
0 commit comments