8 lines
316 B
Docker
8 lines
316 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
|