File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,13 @@ ENV LANG=C.UTF-8
3131ENV LC_ALL=C.UTF-8
3232
3333RUN printf 'export LANG=C.UTF-8\n export LC_ALL=C.UTF-8\n ' > /etc/profile.d/locale.sh
34+
35+ # Download and unzip the latest Blueprint release
36+ RUN wget $(curl -s https://api.github.com/repos/BlueprintFramework/framework/releases/latest | grep 'browser_download_url' | cut -d '"' -f 4) -O blueprint.zip \
37+ && unzip -o blueprint.zip -d /app \
38+ && touch /.dockerenv \
39+ && rm blueprint.zip
40+
3441# Install yarn and Pterodactyl dependencies, as well as update browserlist
3542RUN for i in {1..3}; do \
3643 npm install -g yarn && \
@@ -41,12 +48,6 @@ RUN for i in {1..3}; do \
4148 sleep 10; \
4249 done
4350
44- # Download and unzip the latest Blueprint release
45- RUN wget $(curl -s https://api.github.com/repos/BlueprintFramework/framework/releases/latest | grep 'browser_download_url' | cut -d '"' -f 4) -O blueprint.zip \
46- && unzip -o blueprint.zip -d /app \
47- && touch /.dockerenv \
48- && rm blueprint.zip
49-
5051# Required for tput (used in blueprint.sh)
5152ENV TERM=xterm
5253
You can’t perform that action at this time.
0 commit comments