Skip to content

Commit

Permalink
Fix cached git clone
Browse files Browse the repository at this point in the history
  • Loading branch information
bluecraank committed Apr 19, 2024
1 parent d40bfc4 commit 0f35c8c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ 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
# 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 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

# Apache configuration
Expand Down

0 comments on commit 0f35c8c

Please sign in to comment.