Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
dippindots committed Jul 25, 2024
1 parent 7989259 commit 413e8ef
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions docker/web-and-data/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,18 @@ RUN mkdir -p target/dependency && (cd target/dependency; jar -xf ../*-exec.jar)
FROM eclipse-temurin:21

# download system dependencies first to take advantage of docker caching
RUN apt update; apt install -y --no-install-recommends \
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
default-mysql-client \
default-libmysqlclient-dev \
python3 \
python3-setuptools \
python3-dev \
python3-pip \
unzip \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/* \
&& pip3 install wheel

RUN apt install pipx; pipx ensurepath; pipx install wheel

# copy over core files and data-related scripts
RUN mkdir -p /cbioportal
Expand Down

0 comments on commit 413e8ef

Please sign in to comment.