11 lines
208 B
Text
11 lines
208 B
Text
FROM ubuntu:22.04
|
|
|
|
RUN apt update && apt upgrade -y --autoremove
|
|
|
|
RUN apt install -y \
|
|
jq \
|
|
podman \
|
|
nodejs \
|
|
git
|
|
|
|
COPY ./files/registries.conf /etc/containers/registries.conf
|