From 77d6c9af9cb254e0c119b1b0ab6cdca6d77b8ad6 Mon Sep 17 00:00:00 2001 From: darta Date: Thu, 10 Feb 2022 06:03:57 +0000 Subject: [PATCH] fix(api): font awesome new wget url --- docker/api/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/api/Dockerfile b/docker/api/Dockerfile index 093df47..d15c92f 100644 --- a/docker/api/Dockerfile +++ b/docker/api/Dockerfile @@ -16,8 +16,9 @@ RUN apk add curl py3-yaml COPY ./src /api -RUN wget -qO - https://fontawesome.com/v4.7/assets/font-awesome-4.7.0.zip | busybox unzip -d /api/api/static/css/ - +RUN wget -qO - https://github.com/FortAwesome/Font-Awesome/archive/v4.7.0.zip | busybox unzip -d /api/api/static/css/ - +#https://fontawesome.com/v4.7/assets/font-awesome-4.7.0.zip COPY default.conf /etc/nginx/conf.d/default.conf ADD entrypoint.sh /docker-entrypoint.d/ -RUN chmod 775 /docker-entrypoint.d/entrypoint.sh \ No newline at end of file +RUN chmod 775 /docker-entrypoint.d/entrypoint.sh