mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-08-04 02:37:44 +00:00
11 lines
361 B
Docker
11 lines
361 B
Docker
|
|
# 1. Pull down your Azure Container Registry image
|
||
|
|
FROM rdagentappregistry.azurecr.io/rd-agent-mle:20250623
|
||
|
|
|
||
|
|
# 2. (Optional) install any additional tools you need
|
||
|
|
# e.g. git, bash-completion, etc.
|
||
|
|
# RUN apt update && \
|
||
|
|
# apt install -y git bash-completion && \
|
||
|
|
# rm -rf /var/lib/apt/lists/*
|
||
|
|
RUN apt update && \
|
||
|
|
apt install -y git bash-completion
|