diff --git a/Dockerfile b/Dockerfile
index 070a8e83b5c93d5cf22eb2f171262207df43762f..febbe16e6bd7716324c8d2760238700abf3dbb45 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -6,6 +6,8 @@ WORKDIR /app
 # Install app dependencies
 COPY package*.json ./
 
+ENV NODE_ENV=production
+
 # Native dependencies
 RUN apk add --no-cache make gcc g++ python
 
diff --git a/db/Dockerfile b/db/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..3bca1ccc94fd3b6ae3aa8eaaf6ed125d11d9c411
--- /dev/null
+++ b/db/Dockerfile
@@ -0,0 +1,3 @@
+FROM postgres:alpine
+
+