From c3e8478840ff665c5aef8292a7f5f05b4f04006d Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Sun, 12 Mar 2023 10:39:39 -0400 Subject: [PATCH] Make the Docker image usable (#3) xD Reviewed-on: https://git.atomaka.com/atomaka/budget/pulls/3 --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index e1c6885..8e12251 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,9 @@ ARG RUBY_VERSION=3.2.0 FROM ruby:$RUBY_VERSION +# Rails app lives here +WORKDIR /rails + # Set production environment ENV RAILS_LOG_TO_STDOUT="1" \ RAILS_SERVE_STATIC_FILES="true" \