mirror of
https://github.com/kennethnym/jrx.git
synced 2026-03-20 03:41:18 +00:00
7 lines
245 B
Docker
7 lines
245 B
Docker
|
|
FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04
|
||
|
|
|
||
|
|
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
||
|
|
&& apt-get -y install --no-install-recommends \
|
||
|
|
curl unzip git ca-certificates \
|
||
|
|
&& rm -rf /var/lib/apt/lists/*
|