Skip to content

Commit

Permalink
use aoflagger 3.4 and ubuntu 24.04 in docker
Browse files Browse the repository at this point in the history
  • Loading branch information
d3v-null committed Jun 25, 2024
1 parent b054011 commit 41bab16
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

# locale stuff is needed for tzdata
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
locale-gen
ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8

ENV DEBIAN_FRONTEND=noninteractive
ARG DEBUG
Expand Down Expand Up @@ -30,7 +35,7 @@ RUN apt-get clean \
RUN mkdir -m755 /opt/rust /opt/cargo
ENV RUSTUP_HOME=/opt/rust CARGO_HOME=/opt/cargo PATH=/opt/cargo/bin:$PATH
# set minimal rust version here to use a newer stable version
ENV RUST_VERSION=1.67
ENV RUST_VERSION=stable
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=$RUST_VERSION

# install latest stable rust toolchian, with llvm-tools-preview (for coverage)
Expand Down
6 changes: 2 additions & 4 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ $SUDO apt-get install -y \
python3
cd /tmp
[ -d "aoflagger" ] && rm -rf aoflagger
git clone --recurse-submodules https://gitlab.com/aroffringa/aoflagger.git --branch v3.1.0
git clone --recurse-submodules https://gitlab.com/aroffringa/aoflagger.git --branch v3.4.0
cd aoflagger
chmod a+rwx .
mkdir build
Expand All @@ -119,9 +119,7 @@ linux_alias = "linux_install_cfitsio"
dependencies = ["install_cfitsio"]

[tasks.linux_install_deps]
dependencies = [
"linux_install_aoflagger",
]
dependencies = ["linux_install_aoflagger"]

[tasks.install_deps]
linux_alias = "linux_install_deps"
Expand Down

0 comments on commit 41bab16

Please sign in to comment.