-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Back to using ubuntu 20.04 but install python 3.12
- Loading branch information
Showing
1 changed file
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
FROM python:3.12-slim-bookworm | ||
FROM ubuntu:20.04 | ||
|
||
## Get some karma ## | ||
MAINTAINER Florian Briegel, [email protected] | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y locales | ||
|
||
ENV LANG C.UTF-8 | ||
ENV LC_ALL C.UTF-8 | ||
ENV LANG=C.UTF-8 | ||
ENV LC_ALL=C.UTF-8 | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt update -y && \ | ||
apt install -y wget && \ | ||
|
@@ -32,6 +32,10 @@ RUN apt update -y | |
RUN apt-get install -y tan-basda-mocca | ||
RUN dpkg --purge --force-all python3-astropy | ||
|
||
RUN add-apt-repository ppa:deadsnakes/ppa | ||
RUN apt update -y | ||
RUN apt install -y python3.12 | ||
|
||
COPY . lvmtan | ||
RUN cd lvmtan && pip3 install . | ||
|
||
|