Fix reverb
This commit is contained in:
@@ -49,6 +49,11 @@ jobs:
|
|||||||
context: .
|
context: .
|
||||||
file: Dockerfile
|
file: Dockerfile
|
||||||
push: true
|
push: true
|
||||||
|
build-args: |
|
||||||
|
VITE_REVERB_APP_KEY=${{ secrets.REVERB_APP_KEY }}
|
||||||
|
VITE_REVERB_HOST=perceptron.matthiasg.dev
|
||||||
|
VITE_REVERB_PORT=443
|
||||||
|
VITE_REVERB_SCHEME=https
|
||||||
tags: git.matthiasg.dev/ninluc/perceptron-viewer/perceptron-viewer:latest, git.matthiasg.dev/ninluc/perceptron-viewer/perceptron-viewer:${{ steps.get_version.outputs.version }}
|
tags: git.matthiasg.dev/ninluc/perceptron-viewer/perceptron-viewer:latest, git.matthiasg.dev/ninluc/perceptron-viewer/perceptron-viewer:${{ steps.get_version.outputs.version }}
|
||||||
|
|
||||||
# notify:
|
# notify:
|
||||||
|
|||||||
+10
@@ -9,6 +9,16 @@ RUN composer install --no-dev --optimize-autoloader --no-interaction
|
|||||||
# Install node and npm
|
# Install node and npm
|
||||||
RUN apk add --no-cache nodejs npm
|
RUN apk add --no-cache nodejs npm
|
||||||
RUN npm install
|
RUN npm install
|
||||||
|
|
||||||
|
ARG VITE_REVERB_APP_KEY
|
||||||
|
ARG VITE_REVERB_HOST
|
||||||
|
ARG VITE_REVERB_PORT=443
|
||||||
|
ARG VITE_REVERB_SCHEME=https
|
||||||
|
ENV VITE_REVERB_APP_KEY=$VITE_REVERB_APP_KEY \
|
||||||
|
VITE_REVERB_HOST=$VITE_REVERB_HOST \
|
||||||
|
VITE_REVERB_PORT=$VITE_REVERB_PORT \
|
||||||
|
VITE_REVERB_SCHEME=$VITE_REVERB_SCHEME
|
||||||
|
|
||||||
RUN npm run build
|
RUN npm run build
|
||||||
|
|
||||||
# Final PHP image
|
# Final PHP image
|
||||||
|
|||||||
Reference in New Issue
Block a user