diff --git a/Gemfile.lock b/Gemfile.lock index e63f3a8b..879c9bde 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -99,7 +99,7 @@ GEM bcrypt (3.1.20) benchmark (0.4.0) bigdecimal (3.1.9) - bootsnap (1.18.4) + bootsnap (1.18.6) msgpack (~> 1.2) brakeman (7.0.2) racc @@ -139,6 +139,7 @@ GEM dotenv (= 3.1.7) railties (>= 6.1) drb (2.2.3) + erb (5.0.1) erubi (1.13.1) et-orbi (1.2.11) tzinfo @@ -205,7 +206,7 @@ GEM activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.24.0) + loofah (2.24.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -216,9 +217,9 @@ GEM marcel (1.0.4) method_source (1.1.0) mini_mime (1.1.5) - mini_portile2 (2.8.8) + mini_portile2 (2.8.9) minitest (5.25.5) - msgpack (1.7.3) + msgpack (1.8.0) multi_json (1.15.0) multi_xml (0.7.1) bigdecimal (~> 3.1) @@ -245,7 +246,7 @@ GEM racc (~> 1.4) nokogiri (1.18.8-x86_64-linux-gnu) racc (~> 1.4) - oj (3.16.9) + oj (3.16.10) bigdecimal (>= 3.0) ostruct (>= 0.2) optimist (3.2.0) @@ -272,7 +273,7 @@ GEM pry (>= 0.13, < 0.16) pry-rails (0.3.11) pry (>= 0.13.0) - psych (5.2.4) + psych (5.2.6) date stringio public_suffix (6.0.1) @@ -283,7 +284,7 @@ GEM raabro (1.4.0) racc (1.8.1) rack (3.1.15) - rack-session (2.1.0) + rack-session (2.1.1) base64 (>= 0.1.0) rack (>= 3.0.0) rack-test (2.2.0) @@ -304,7 +305,7 @@ GEM activesupport (= 8.0.2) bundler (>= 1.15.0) railties (= 8.0.2) - rails-dom-testing (2.2.0) + rails-dom-testing (2.3.0) activesupport (>= 5.0.0) minitest nokogiri (>= 1.6) @@ -321,7 +322,8 @@ GEM zeitwerk (~> 2.6) rainbow (3.1.1) rake (13.2.1) - rdoc (6.13.1) + rdoc (6.14.0) + erb psych (>= 4.0.0) redis (5.4.0) redis-client (>= 0.22.0) @@ -393,10 +395,10 @@ GEM rubocop-ast (>= 1.44.0, < 2.0) ruby-progressbar (1.13.0) securerandom (0.4.1) - sentry-rails (5.23.0) + sentry-rails (5.24.0) railties (>= 5.0) - sentry-ruby (~> 5.23.0) - sentry-ruby (5.23.0) + sentry-ruby (~> 5.24.0) + sentry-ruby (5.24.0) bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) shoulda-matchers (6.5.0) @@ -470,7 +472,7 @@ GEM base64 websocket-extensions (>= 0.1.0) websocket-extensions (0.1.5) - zeitwerk (2.7.2) + zeitwerk (2.7.3) PLATFORMS aarch64-linux diff --git a/README.md b/README.md index 150271e9..b3d125db 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ You can track your location with the following apps: - 🌍 [Overland](https://dawarich.app/docs/tutorials/track-your-location#overland) - πŸ›°οΈ [OwnTracks](https://dawarich.app/docs/tutorials/track-your-location#owntracks) - πŸ—ΊοΈ [GPSLogger](https://dawarich.app/docs/tutorials/track-your-location#gps-logger) +- πŸ“± [PhoneTrack](https://dawarich.app/docs/tutorials/track-your-location#phonetrack) - 🏑 [Home Assistant](https://dawarich.app/docs/tutorials/track-your-location#homeassistant) Simply install one of the supported apps on your device and configure it to send location updates to your Dawarich instance. diff --git a/docker/Dockerfile.prod b/docker/Dockerfile.prod index c8830f62..e5fd1d61 100644 --- a/docker/Dockerfile.prod +++ b/docker/Dockerfile.prod @@ -8,6 +8,7 @@ ENV RAILS_PORT=3000 ENV RAILS_ENV=production RUN apt-get update -qq && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ + wget \ build-essential \ git \ postgresql-client \