add dart 2.18 and 2.19
This commit is contained in:
2
.github/workflows/dart.yml
vendored
2
.github/workflows/dart.yml
vendored
@@ -17,6 +17,8 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
tag:
|
tag:
|
||||||
- 2.17
|
- 2.17
|
||||||
|
- 2.18
|
||||||
|
- 2.19
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
# Setup QEMU for ARM64 Build
|
# Setup QEMU for ARM64 Build
|
||||||
|
14
dart/2.18/Dockerfile
Normal file
14
dart/2.18/Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
FROM --platform=$TARGETOS/$TARGETARCH dart:2.18
|
||||||
|
|
||||||
|
LABEL author="Alden Bansemer" maintainer="alden@knoban.com"
|
||||||
|
|
||||||
|
RUN apt update \
|
||||||
|
&& apt -y install iproute2 git ca-certificates tzdata \
|
||||||
|
&& useradd -m -d /home/container container
|
||||||
|
|
||||||
|
USER container
|
||||||
|
ENV USER=container HOME=/home/container
|
||||||
|
WORKDIR /home/container
|
||||||
|
|
||||||
|
COPY ./../entrypoint.sh /entrypoint.sh
|
||||||
|
CMD [ "/bin/bash", "/entrypoint.sh" ]
|
14
dart/2.19/Dockerfile
Normal file
14
dart/2.19/Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
FROM --platform=$TARGETOS/$TARGETARCH dart:2.19
|
||||||
|
|
||||||
|
LABEL author="Alden Bansemer" maintainer="alden@knoban.com"
|
||||||
|
|
||||||
|
RUN apt update \
|
||||||
|
&& apt -y install iproute2 git ca-certificates tzdata \
|
||||||
|
&& useradd -m -d /home/container container
|
||||||
|
|
||||||
|
USER container
|
||||||
|
ENV USER=container HOME=/home/container
|
||||||
|
WORKDIR /home/container
|
||||||
|
|
||||||
|
COPY ./../entrypoint.sh /entrypoint.sh
|
||||||
|
CMD [ "/bin/bash", "/entrypoint.sh" ]
|
Reference in New Issue
Block a user