oneuptime/Llama/Dockerfile.tpl

24 lines
476 B
Docker
Raw Normal View History

2023-10-01 11:46:51 +00:00
ARG TAG=latest
FROM continuumio/miniconda3:$TAG
RUN apt-get update \
&& DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-install-recommends \
git \
locales \
sudo \
build-essential \
dpkg-dev \
wget \
openssh-server \
nano \
&& rm -rf /var/lib/apt/lists/*
# Setting up locales
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
# Updating conda to the latest version
RUN conda update conda -y