Some checks failed
andreas-personal/jenkins-ssh-docker-agent/pipeline/head There was a failure building this commit
25 lines
481 B
Docker
25 lines
481 B
Docker
FROM jenkins/ssh-agent:alpine
|
|
|
|
RUN addgroup --gid 281 docker
|
|
RUN addgroup jenkins docker
|
|
|
|
RUN apk add --no-cache docker docker-compose
|
|
|
|
# Install tea
|
|
RUN apk add --no-cache tea
|
|
|
|
# Install flutter
|
|
RUN apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing flutter
|
|
|
|
# Run flutter doctor and upgrade
|
|
USER jenkins
|
|
|
|
RUN flutter config --no-cli-animations
|
|
RUN flutter doctor -v
|
|
RUN flutter upgrade
|
|
|
|
USER root
|
|
|
|
#Install OpenSSL
|
|
RUN apk add --no-cache openssl
|