Skip to content
Snippets Groups Projects
Commit 9a917192 authored by Dominique Benielli's avatar Dominique Benielli
Browse files

first update for ltfatpy 1.0.17

parent 8c6f3762
Branches
No related tags found
No related merge requests found
FROM ubuntu:16.04 FROM ubuntu:24.04
MAINTAINER Florent Jaillet MAINTAINER Dominique Benielli
WORKDIR /tmp/ WORKDIR /tmp/
RUN apt-get update && \ RUN apt-get update && \
......
FROM ubuntu:16.04
MAINTAINER Florent Jaillet
WORKDIR /tmp/
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends \
wget \
ca-certificates \
bzip2 \
gcc \
g++ \
git \
&& \
apt-get clean
ENV CONDA=/miniconda/bin/conda
RUN wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
bash Miniconda3-latest-Linux-x86_64.sh -b -p /miniconda && \
rm Miniconda3-latest-Linux-x86_64.sh && \
$CONDA update -n base -y conda && \
$CONDA update -y --all && \
$CONDA install -y conda-build anaconda-client && \
$CONDA clean -y --all
RUN mkdir -p /root/.config/matplotlib && \
echo "backend: pdf" > /root/.config/matplotlib/matplotlibrc
python_version: python_version:
- 2.7
- 3.5 - 3.5
- 3.6 - 3.6
- 3.7 - 3.7
- 3.8
- 3.9
- 3.10
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment