fix: remove pubspec.lock from Dockerfile (not in repo)

This commit is contained in:
Jeroen Schweitzer
2026-01-02 13:57:05 +01:00
parent fb78b6224f
commit 2b9f9273d6
+2 -2
View File
@@ -4,9 +4,9 @@ FROM ghcr.io/cirruslabs/flutter:stable AS builder
WORKDIR /app
# Copy dependency files first for better caching
COPY pubspec.yaml pubspec.lock ./
COPY pubspec.yaml ./
# Get dependencies
# Get dependencies (generates pubspec.lock)
RUN flutter pub get
# Copy the rest of the application