Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
bluecraank authored Apr 19, 2024
1 parent c7bad30 commit 2573408
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2-apache
FROM php:8.3-apache

LABEL maintainer "blueCraanK"
ARG NODE_VERSION=20
Expand Down Expand Up @@ -35,8 +35,9 @@ RUN chmod +x /usr/local/bin/install-php-extensions && \
# Clone source code if not downloaded
RUN rm -rf /var/www/html
# RUN git clone https://github.com/bluecraank/open-signage.git /var/www/html
ADD https://api.github.com/repos/bluecraank/open-signage/git/refs/heads/master version.json
RUN git clone https://github.com/bluecraank/open-signage.git /var/www/html
ARG BRANCH=master
ADD https://api.github.com/repos/bluecraank/open-signage/git/refs/heads/$BRANCH /var/www/version.json
RUN git clone -b $BRANCH https://github.com/bluecraank/open-signage.git /var/www/html

COPY .env.example.productive /var/www/html/.env

Expand Down

0 comments on commit 2573408

Please sign in to comment.