mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 07:10:53 +00:00
24 lines
476 B
Docker
24 lines
476 B
Docker
|
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
|
||
|
|