From d4329c8dbb0722fee5f9b6d63ffff7d41f866e00 Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Sat, 6 Apr 2024 22:36:08 +0200 Subject: [PATCH] Remove the `test-docker-entrypoint.sh` script and references to it in the Dockerfile --- CHANGELOG.md | 6 ++++++ Dockerfile | 3 +-- app/views/shared/_navbar.html.erb | 2 +- docker-compose.yml | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca997d15..2c05e350 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.1.6.1] — 2024-04-06 + +### Fixed + +- `ActiveStorage::FileNotFoundError: ActiveStorage::FileNotFoundError` error when uploading export files + ## [0.1.6] — 2024-04-06 You can now use [Overland](https://overland.p3k.app/) mobile app to track your location. diff --git a/Dockerfile b/Dockerfile index b603b3d7..354d48bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,7 @@ ENV RAILS_PORT 3000 # Copy entrypoint scripts and grant execution permissions COPY ./dev-docker-entrypoint.sh /usr/local/bin/dev-entrypoint.sh -COPY ./test-docker-entrypoint.sh /usr/local/bin/test-entrypoint.sh -RUN chmod +x /usr/local/bin/dev-entrypoint.sh && chmod +x /usr/local/bin/test-entrypoint.sh +RUN chmod +x /usr/local/bin/dev-entrypoint.sh # Copy application files to workdir COPY . $APP_PATH diff --git a/app/views/shared/_navbar.html.erb b/app/views/shared/_navbar.html.erb index 2736bdb8..8b8a438e 100644 --- a/app/views/shared/_navbar.html.erb +++ b/app/views/shared/_navbar.html.erb @@ -11,7 +11,7 @@ <%= link_to 'DaWarIch', root_path, class: 'btn btn-ghost normal-case text-xl'%> -
0.1.6
+
0.1.6.1