6 lines
250 B
Plaintext
6 lines
250 B
Plaintext
FROM ghcr.io/cirruslabs/flutter:3.38.9
|
|
COPY ./ /build
|
|
WORKDIR /build
|
|
RUN apt update -y && apt install clang cmake ninja-build pkg-config libgtk-3-dev libstdc++-12-dev -y
|
|
RUN flutter build linux --release
|
|
RUN cp build/linux/*/release/bundle/prod /prod |