initial commit
This commit is contained in:
commit
ea67df93ba
16
.drone.yml
Normal file
16
.drone.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: publish
|
||||
image: techknowlogick/drone-docker:latest
|
||||
privileged: true
|
||||
settings:
|
||||
repo: garionion/archlinux-flutter
|
||||
password:
|
||||
from_secret: docker_password
|
||||
username:
|
||||
from_secret: docker_username
|
||||
tags:
|
||||
- latest
|
15
Dockerfile
Normal file
15
Dockerfile
Normal file
|
@ -0,0 +1,15 @@
|
|||
FROM archlinux:base-devel as prepare
|
||||
|
||||
RUN pacman -Sy git java-environment glu unzip libglvnd python --noconfirm
|
||||
RUN useradd builduser -m
|
||||
USER builduser
|
||||
WORKDIR /home/builduser
|
||||
RUN git clone https://git.entr0py.de/garionion/flutter-aur.git
|
||||
WORKDIR flutter-aur
|
||||
RUN PKGEXT=".pkg.tar" makepkg
|
||||
|
||||
FROM archlinux:base-devel
|
||||
LABEL maintainer="dockerhub@enderware.de"
|
||||
|
||||
COPY --from=prepare /home/builduser/flutter-aur/flutter-*-x86_64.pkg.tar .
|
||||
RUN pacman -Sy clang cmake ninja git unzip gtk3 --noconfirm && pacman -U flutter-*-x86_64.pkg.tar --noconfirm && rm -rf /var/cache/pacman && rm flutter-*-x86_64.pkg.tar
|
Loading…
Reference in a new issue