Created
February 1, 2023 22:00
-
-
Save Berdir/c98a896c0588196eb2aef134d3f2aa45 to your computer and use it in GitHub Desktop.
ddev relay
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .ddev/web-build/Dockerfile | |
# You can copy this Dockerfile.example to Dockerfile to add configuration | |
# or packages or anything else to your webimage | |
ARG BASE_IMAGE | |
FROM $BASE_IMAGE | |
# Add Relay repository | |
RUN wget -q "https://repos.r2.relay.so/key.gpg" -O- | apt-key add - | |
RUN echo "deb https://repos.r2.relay.so/deb $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list | |
RUN apt-get update | |
# Install Relay | |
RUN apt-get install -y \ | |
php8.1-relay |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like this might be the way to go: