Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/alpine/3.18/WithNode/amd64/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.18-local

RUN apk update && apk add --no-cache nodejs npm

# Add label for bring your own node in azure devops
LABEL "com.azure.dev.pipelines.agent.handler.node.path"="/usr/bin/node"

ENV NO_UPDATE_NOTIFIER=true

# Set node as a default command
CMD [ "node" ]
42 changes: 42 additions & 0 deletions src/alpine/3.18/amd64/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
FROM alpine:3.18

# Install .NET and test dependencies
RUN apk update && apk add --no-cache \
autoconf \
automake \
bash \
build-base \
clang \
clang-dev \
cmake \
coreutils \
curl \
elfutils \
file \
gcc \
gettext-dev \
git \
icu-data-full \
icu-dev \
jq \
krb5-dev \
libtool \
libunwind-dev \
linux-headers \
lld \
lldb-dev \
llvm \
lttng-ust-dev \
make \
numactl-dev \
openssl \
openssl-dev \
paxctl \
py3-lldb \
python3-dev \
shadow \
sudo \
tzdata \
util-linux-dev \
which \
zlib-dev
29 changes: 29 additions & 0 deletions src/alpine/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,35 @@
}
]
},
{
"platforms": [
{
"dockerfile": "src/alpine/3.18/amd64",
"os": "linux",
"osVersion": "alpine3.18",
"tags": {
"alpine-3.18-$(System:TimeStamp)-$(System:DockerfileGitCommitSha)": {},
"alpine-3.18$(FloatingTagSuffix)": {},
"alpine-3.18-local": {
"isLocal": true
}
}
}
]
},
{
"platforms": [
{
"dockerfile": "src/alpine/3.18/WithNode/amd64",
"os": "linux",
"osVersion": "alpine3.18",
"tags": {
"alpine-3.18-WithNode-$(System:TimeStamp)-$(System:DockerfileGitCommitSha)": {},
"alpine-3.18-WithNode$(FloatingTagSuffix)": {}
}
}
]
},
{
"platforms": [
{
Expand Down