Seems clean
This commit is contained in:
parent
3bf60ffda8
commit
fc34525755
5 changed files with 155 additions and 2 deletions
15
flutter/Dockerfile
Normal file
15
flutter/Dockerfile
Normal file
|
@ -0,0 +1,15 @@
|
|||
FROM d:base
|
||||
|
||||
USER root
|
||||
|
||||
RUN pacman -Syu --noconfirm base-devel cmake ninja clang pkgconf gtk3 libxcb
|
||||
|
||||
RUN git clone https://github.com/flutter/flutter.git /opt/flutter \
|
||||
&& chown -R x:x /opt/flutter
|
||||
|
||||
USER x
|
||||
|
||||
ENV PATH="/opt/flutter/bin:${PATH}"
|
||||
RUN flutter doctor
|
||||
|
||||
WORKDIR /home/x/Projects
|
Loading…
Add table
Add a link
Reference in a new issue