From 0f2f2f447c218f95c6c43a9666c4fc2c51292a1a Mon Sep 17 00:00:00 2001 From: Nic Jansma Date: Tue, 7 Oct 2025 10:34:45 -0400 Subject: [PATCH] Dockerfile fixes (#268) --- web/Dockerfile => Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename web/Dockerfile => Dockerfile (95%) diff --git a/web/Dockerfile b/Dockerfile similarity index 95% rename from web/Dockerfile rename to Dockerfile index 2aed845..4f462df 100644 --- a/web/Dockerfile +++ b/Dockerfile @@ -43,7 +43,8 @@ WORKDIR /app COPY --from=builder /usr/local/bundle /usr/local/bundle # Copy application code (exclude Dockerfile from web directory) -COPY --chown=potatomesh:potatomesh web/app.rb web/app.sh web/Gemfile web/Gemfile.lock* web/public/ web/spec/ ./ +COPY --chown=potatomesh:potatomesh web/app.rb web/app.sh web/Gemfile web/Gemfile.lock* web/spec/ ./ +COPY --chown=potatomesh:potatomesh web/public ./public COPY --chown=potatomesh:potatomesh web/views/ ./views/ # Copy SQL schema files from data directory