Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update regenie version to 3.4 #93

Merged
merged 9 commits into from
Dec 15, 2023
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:22.04
COPY environment.yml .

# Install miniconda
Expand Down Expand Up @@ -45,12 +45,12 @@ RUN jbang export portable -O=RegenieValidateInput.jar RegenieValidateInput.java

# Install regenie (not as conda package available)
WORKDIR "/opt"
ENV REGENIE_VERSION="v3.3"
ENV REGENIE_VERSION="v3.4"
RUN mkdir regenie && cd regenie && \
wget https://github.com/rgcgithub/regenie/releases/download/${REGENIE_VERSION}/regenie_${REGENIE_VERSION}.gz_x86_64_Linux.zip && \
unzip -q regenie_v3.*.gz_x86_64_Linux.zip && \
rm regenie_v3.*.gz_x86_64_Linux.zip && \
mv regenie_v3.*.gz_x86_64_Linux regenie && \
unzip -q regenie_${REGENIE_VERSION}.gz_x86_64_Linux.zip && \
rm regenie_${REGENIE_VERSION}.gz_x86_64_Linux.zip && \
mv regenie_${REGENIE_VERSION}.gz_x86_64_Linux regenie && \
chmod +x regenie

ENV PATH="/opt/regenie/:${PATH}"
ENV PATH="/opt/regenie/:${PATH}"
Loading