From d09c6e7a39d480ee16cfc4d4b5571d563e941bb2 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Thu, 16 Nov 2023 11:41:57 +0100 Subject: [PATCH] Use production env for Docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c509fc7..16f7de7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM ruby:2.7.8 WORKDIR /liquorcabinet -ENV RACK_ENV=staging +ENV RACK_ENV=production COPY Gemfile Gemfile.lock /liquorcabinet/ RUN bundle install