Skip to content
Snippets Groups Projects
Select Git revision
  • bf7e55948f21c1fdbc510c36f5c6076b1232ab9e
  • master default protected
  • 566-use-valkey-for-caching-of-statistics
  • dev protected
  • release-1.11 protected
  • replication_test_two
  • luca_ba_new_interface
  • replication_test
  • release-1.10 protected
  • 533-integrate-semantic-recommendation-2
  • 556-usage-statistics
  • 553-semantic-recommendation-2
  • 553-semantic-recommendation
  • release-1.9 protected
  • 551-init-broker-service-permissions
  • 549-test-oai-pmh
  • 545-saving-multiple-times-breaks-pid-metadata
  • 499-standalone-compute-service-2
  • 539-load-tests
  • hotfix/helm-chart
  • 534-bug-when-adding-access-to-user-that-is-not-registered-at-dashboard-service
  • v1.11.0 protected
  • v1.10.5 protected
  • v1.10.4 protected
  • v1.10.3 protected
  • v1.10.2 protected
  • v1.10.1 protected
  • v1.10.0-rc13 protected
  • v1.10.0-rc12 protected
  • v1.10.0-rc11 protected
  • v1.10.0-rc10 protected
  • v1.10.0-rc9 protected
  • v1.10.0-rc8 protected
  • v1.10.0-rc7 protected
  • v1.10.0-rc6 protected
  • v1.10.0-rc5 protected
  • v1.10.0-rc4 protected
  • v1.10.0-rc3 protected
  • v1.10.0-rc2 protected
  • v1.10.0rc1 protected
  • v1.10.0rc0 protected
41 results

Dockerfile

Blame
  • Martin Weise's avatar
    bf7e5594
    History
    Dockerfile 461 B
    FROM python:3.11-slim as build
    
    WORKDIR /app
    
    ENV VERSIONS="latest,1.4.1,1.4.0"
    ENV APP_VERSION="1.4.1"
    
    RUN apt-get update && apt-get install -y git
    
    COPY .git/ .git/
    COPY .docs/ .docs/
    COPY ./requirements.txt ./requirements.txt
    
    RUN bash .docs/build-website.sh
    
    FROM nginx as runtime
    
    WORKDIR /usr/share/nginx/html/infrastructures/dbrepo/
    
    COPY --from=build /app/final /usr/share/nginx/html/infrastructures/dbrepo/
    
    RUN rm -f ./index.html
    
    RUN pwd
    
    RUN ls -la