From 1b89a8e3b86a68b1eb59c62863991fc50cb15fd1 Mon Sep 17 00:00:00 2001 From: br-creative <168625727+br-creative@users.noreply.github.com> Date: Mon, 15 Jun 2026 21:33:53 +0200 Subject: [PATCH] fix: remove VOLUME keyword for Railway compatibility (#2619) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Railway bans VOLUME in Dockerfiles — persistent storage is handled via Railway volumes instead. ## Thinking Path > - Paperclip orchestrates AI agents for zero-human companies > - [Which subsystem or capability is involved] > - [What problem or gap exists] > - [Why it needs to be addressed] > - This pull request ... > - The benefit is ... ## What Changed - ## Verification - ## Risks - ## Model Used - ## Checklist - [ ] I have included a thinking path that traces from project context to this change - [ ] I have specified the model used (with version and capability details) - [ ] I have run tests locally and they pass - [ ] I have added or updated tests where applicable - [ ] If this change affects the UI, I have included before/after screenshots - [ ] I have updated relevant documentation to reflect my changes - [ ] I have considered and documented any risks above - [ ] I will address all Greptile and reviewer comments before requesting merge Co-authored-by: Claude Opus 4.6 (1M context) --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae297a95..cc503d98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -83,7 +83,6 @@ ENV NODE_ENV=production \ OPENCODE_ALLOW_ALL_MODELS=true \ GEMINI_SANDBOX=false -VOLUME ["/paperclip"] EXPOSE 3100 ENTRYPOINT ["docker-entrypoint.sh"]