Skip to content

Commit

Permalink
Fix web and date image build
Browse files Browse the repository at this point in the history
`python3-wheel` is now installed by default, no need to install separately
  • Loading branch information
inodb authored Jul 29, 2024
1 parent e589b7d commit de1d28a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docker/web-and-data/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ RUN apt-get update; apt-get install -y --no-install-recommends \
python3-dev \
python3-pip \
unzip \
&& rm -rf /var/lib/apt/lists/* \
&& pip3 install wheel
&& rm -rf /var/lib/apt/lists/*

# copy over core files and data-related scripts
RUN mkdir -p /cbioportal
Expand Down Expand Up @@ -74,4 +73,4 @@ COPY --from=build ${DEPENDENCY}/BOOT-INF/classes $PORTAL_WEB_HOME/
# add entrypoint
COPY --from=build /cbioportal/docker/web-and-data/docker-entrypoint.sh /usr/local/bin/
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["sh", "-c", "java $(echo $JAVA_OPTS) -cp /cbioportal-webapp:/cbioportal-webapp/lib/* org.cbioportal.PortalApplication $(echo $WEBAPP_OPTS)"]
CMD ["sh", "-c", "java $(echo $JAVA_OPTS) -cp /cbioportal-webapp:/cbioportal-webapp/lib/* org.cbioportal.PortalApplication $(echo $WEBAPP_OPTS)"]

0 comments on commit de1d28a

Please sign in to comment.