diff --git a/flutter/flutter-web.gitlab-ci.yml b/flutter/flutter-web.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..bf5224bd317db2f8e16d9dea487ae97d3bd4c94e
--- /dev/null
+++ b/flutter/flutter-web.gitlab-ci.yml
@@ -0,0 +1,25 @@
+# Required variables:
+## APP_DIRECTORY: The directory of the app
+
+stages:
+  - build
+
+variables:
+  FLUTTER_WEB_IMAGE: registry.420joos.dev/flutter:3.19.0
+
+web_build:
+  stage: build
+  image:
+    name: ${FLUTTER_WEB_IMAGE}
+    pull_policy: always
+  tags:
+    - amd64
+  artifacts:
+    paths:
+      - web/
+    expire_in: 1 day
+  script:
+    - cd ${APP_DIRECTORY}
+    - flutter build web
+  after_script:
+    - mv app/build/web .