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 ed35b0a commit 97886eaCopy full SHA for 97886ea
Dockerfile
@@ -25,10 +25,10 @@ WORKDIR /var/www/html/
25
# Install composer
26
RUN curl -sS https://getcomposer.org/installer | php
27
28
-RUN wget https://github.com/cachethq/Cachet/archive/master.tar.gz && \
29
- tar xzvf master.tar.gz --strip-components=1 && \
+RUN wget https://github.com/cachethq/Cachet/archive/v2.2.0.tar.gz && \
+ tar xzvf v2.2.0.tar.gz --strip-components=1 && \
30
chown -R www-data /var/www/html && \
31
- rm -r master.tar.gz && \
+ rm -r v2.2.0.tar.gz && \
32
php composer.phar install --no-dev -o
33
34
COPY docker/entrypoint.sh /sbin/entrypoint.sh
0 commit comments