Skip to content

Commit

Permalink
fix whtenoise issues in docker building (#2004)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkonie committed Sep 16, 2024
1 parent 74314c6 commit 32fce83
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Changed
- Upgrade to Postgres v16 (#1922)
- Upgrade Python and Vue app dependencies (#1922, #1959)
- Unify base test class naming (#2001)
- Update ``Dockerfile`` for v1.0 upgrades (#2003)
- Update ``Dockerfile`` for v1.0 upgrades (#2003, #2004)
- **Irodsinfo**
- Update REST API versioning (#1936)
- **Landingzones**
Expand Down
7 changes: 5 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,19 @@ RUN mkdir -p /usr/src/app/local-static/local/css && \
mkdir -p /usr/src/app/local-static/local/js && \
cd /usr/src/app/local-static/local/css && \
wget \
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css && \
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css \
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css.map && \
\
cd /usr/src/app/local-static/local/js && \
wget \
https://code.jquery.com/jquery-3.5.1.min.js \
https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js \
https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js.map \
https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.4/js/tether.js \
https://cdnjs.cloudflare.com/ajax/libs/shepherd/1.8.1/js/shepherd.min.js \
https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js \
https://browser.sentry-cdn.com/7.15.0/bundle.tracing.min.js
https://browser.sentry-cdn.com/7.15.0/bundle.tracing.min.js \
https://browser.sentry-cdn.com/7.15.0/bundle.tracing.min.js.map

# Get icons
RUN cd /usr/src/app && \
Expand Down

0 comments on commit 32fce83

Please sign in to comment.