runner-images/Dockerfile

15 lines
431 B
Docker
Raw Normal View History

2023-07-27 20:58:06 +00:00
FROM ubuntu:22.04
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# hadolint ignore=DL3008
RUN apt-get update && apt-get install --no-install-recommends -y \
lsb-release \
gnupg \
curl \
2023-07-27 21:11:08 +00:00
ca-certificates \
2023-07-27 20:58:06 +00:00
&& rm -rf /var/lib/apt/lists/*
2023-07-27 21:11:08 +00:00
RUN curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | gpg --dearmor | tee /usr/share/keyrings/nodesource.gpg
2023-07-27 20:58:06 +00:00
COPY nodesource.list /etc/apt/sources.list.d/