From 21050efd9090a9233a3c33a150f6dc80ca68d3fc Mon Sep 17 00:00:00 2001 From: Cain Watson Date: Sat, 1 Aug 2020 13:15:35 -0500 Subject: [PATCH] build: copy locales/ into docker (#233) --- Dockerfile | 1 + server/apps/draw_it/mix.exs | 2 +- server/apps/draw_it_web/mix.exs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 00c1ee8..5ffa8f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,7 @@ RUN npm ci COPY webpack.config.js .babelrc ./ COPY client ./client +COPY locales ./locales RUN npm run build diff --git a/server/apps/draw_it/mix.exs b/server/apps/draw_it/mix.exs index 30d294d..7cad3cf 100644 --- a/server/apps/draw_it/mix.exs +++ b/server/apps/draw_it/mix.exs @@ -4,7 +4,7 @@ defmodule DrawIt.MixProject do def project do [ app: :draw_it, - version: "2.7.0", + version: "2.7.1", build_path: "../../_build", config_path: "../../config/config.exs", deps_path: "../../deps", diff --git a/server/apps/draw_it_web/mix.exs b/server/apps/draw_it_web/mix.exs index 6104734..cf09bd5 100644 --- a/server/apps/draw_it_web/mix.exs +++ b/server/apps/draw_it_web/mix.exs @@ -4,7 +4,7 @@ defmodule DrawItWeb.MixProject do def project do [ app: :draw_it_web, - version: "2.7.0", + version: "2.7.1", build_path: "../../_build", config_path: "../../config/config.exs", deps_path: "../../deps",