diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..f19fb59a0073f7072d174dcf02a10fdd6932b155
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,13 @@
+# Prepare nginx
+FROM nginx:1.19-alpine
+WORKDIR /app
+
+# ! This copy source needs to be changed to reflect the actual app name
+COPY ./dist/apps/frontend /usr/share/nginx/html
+
+RUN rm /etc/nginx/conf.d/default.conf
+COPY nginx/nginx.conf /etc/nginx/conf.d
+
+# Fire up nginx
+EXPOSE 80
+CMD ["nginx", "-g", "daemon off;"]