Add dart 3.3
This commit is contained in:
parent
53536fffc3
commit
b1fa3d76b5
3 changed files with 24 additions and 1 deletions
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
|
@ -59,6 +59,7 @@ pipeline {
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
docker build -t git.zontreck.com/ariascreations/yolks:dart_stable dart/stable
|
docker build -t git.zontreck.com/ariascreations/yolks:dart_stable dart/stable
|
||||||
|
docker build -t git.zontreck.com/ariascreations/yolks:dart_3.3 dart/3.3
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -75,6 +76,7 @@ pipeline {
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
docker push git.zontreck.com/ariascreations/yolks:dart_stable
|
docker push git.zontreck.com/ariascreations/yolks:dart_stable
|
||||||
|
docker push git.zontreck.com/ariascreations/yolks:dart_3.3
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
1
build.sh
1
build.sh
|
@ -9,3 +9,4 @@ docker build -t git.zontreck.com/ariascreations/yolks:arch base/arch
|
||||||
|
|
||||||
# Build dart containers
|
# Build dart containers
|
||||||
docker build -t git.zontreck.com/ariascreations/yolks:dart_stable dart/stable
|
docker build -t git.zontreck.com/ariascreations/yolks:dart_stable dart/stable
|
||||||
|
docker build -t git.zontreck.com/ariascreations/yolks:dart_3.3 dart/3.3
|
20
dart/3.3/Dockerfile
Normal file
20
dart/3.3/Dockerfile
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
FROM dart:3.3
|
||||||
|
|
||||||
|
LABEL author="Tara Piccari" maintainer="tarapiccari@gmail.com"
|
||||||
|
LABEL upstream="https://github.com/pelican-eggs/yolks"
|
||||||
|
|
||||||
|
RUN apt-get update
|
||||||
|
RUN apt-get install -y tzdata iproute2 git ca-certificates
|
||||||
|
|
||||||
|
RUN useradd -m -d /home/container -s /bin/bash container
|
||||||
|
ENV USER=container HOME=/home/container
|
||||||
|
|
||||||
|
USER container
|
||||||
|
ENV USER=container HOME=/home/container
|
||||||
|
|
||||||
|
STOPSIGNAL SIGINT
|
||||||
|
|
||||||
|
COPY --chown=container:container ./../entrypoint.sh /entrypoint.sh
|
||||||
|
RUN chmod +x /entrypoint.sh
|
||||||
|
ENTRYPOINT ["/bin/bash", "-c", "--"]
|
||||||
|
CMD ["/entrypoint.sh"]
|
Loading…
Add table
Add a link
Reference in a new issue