Skip to content

Commit

Permalink
update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
BinamB committed Nov 15, 2024
1 parent 7c838f1 commit 1bbf357
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,20 @@ RUN chown -R gen3:gen3 /${appname}
FROM base AS builder

# Install ccrypt to decrypt dbgap telmetry files
RUN dnf upgrade && \
# RUN dnf upgrade && \
# dnf install -y \
# libxcrypt-compat-4.4.33 \
# libpq-15.0 && \
# rpm -i https://ccrypt.sourceforge.net/download/1.11/ccrypt-1.11-1.x86_64.rpm

RUN dnf upgrade -y && \
dnf install -y \
libxcrypt-compat-4.4.33 \
libpq-15.0 && \
rpm -i https://ccrypt.sourceforge.net/download/1.11/ccrypt-1.11-1.x86_64.rpm
curl -o /tmp/ccrypt.rpm -L https://ccrypt.sourceforge.net/download/1.11/ccrypt-1.11-1.x86_64.rpm && \
rpm -i /tmp/ccrypt.rpm && \
rm -f /tmp/ccrypt.rpm && \
dnf clean all

# Install just the deps without the code as it's own step to avoid redoing this on code changes
COPY poetry.lock pyproject.toml /${appname}/
Expand Down

0 comments on commit 1bbf357

Please sign in to comment.