diff --git a/.github/workflows/webapp.yaml b/.github/workflows/webapp.yaml
index 9e76909..6b499bf 100644
--- a/.github/workflows/webapp.yaml
+++ b/.github/workflows/webapp.yaml
@@ -26,11 +26,18 @@ jobs:
       - name: Checkout
         uses: actions/checkout@v2
 
+      - name: Log in to the Container registry
+        uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
+        with:
+          registry: ghcr.io
+          username: ${{ github.actor }}
+          password: ${{ secrets.GITHUB_TOKEN }}
+
       - name: Build container
         uses: docker/build-push-action@v6
         with:
           platforms: linux/amd64
-          context: ./webapp/
+          context: webapp/
           file: ./webapp/Dockerfile
           push: true
-          tags: "polder:dev"
\ No newline at end of file
+          tags: "polder:dev"