9 lines
325 B
Docker
9 lines
325 B
Docker
# Note: You can use any Debian/Ubuntu based image you want.
|
|
FROM mcr.microsoft.com/devcontainers/base:bullseye
|
|
|
|
# [Optional] Uncomment this section to install additional OS packages.
|
|
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|
&& apt-get -y install --no-install-recommends \
|
|
bash \
|
|
curl \
|
|
jq |