From cbb15f62d026b0e49f2f5cee0e43012aa41db429 Mon Sep 17 00:00:00 2001 From: Avior Date: Wed, 14 Jun 2023 02:27:25 +0200 Subject: [PATCH] fix: missing line in Dockerfile --- .editorconfig | 9 +++++++++ Dockerfile | 2 ++ 2 files changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1bde451 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +indent_style = tab +indent_size = 4 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 120 diff --git a/Dockerfile b/Dockerfile index b2d5a21..7e1a322 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,8 @@ RUN npm prune --omit=dev ############## # Production # ############## +FROM docker.io/node:alpine as PROD_IMAGE + # inform software to be in production ENV NODE_ENV=production ENV HOST=0.0.0.0