Skip to content

Commit

Permalink
feat: opal 5.0.1 and pipx
Browse files Browse the repository at this point in the history
  • Loading branch information
ymarcon committed Nov 6, 2024
1 parent 5a7e935 commit cfd51db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

FROM tianon/gosu:latest AS gosu

FROM docker.io/library/eclipse-temurin:21-jre-jammy AS server-released
FROM docker.io/library/eclipse-temurin:21-jre AS server-released

ENV OPAL_ADMINISTRATOR_PASSWORD password
ENV OPAL_HOME /srv
ENV OPAL_DIST /usr/share/opal
ENV JAVA_OPTS "-Xms1G -Xmx2G -XX:+UseG1GC"

ENV OPAL_VERSION=5.0.0
ENV OPAL_VERSION=5.0.1
ENV LIMESURVEY_PLUGIN_VERSION=2.0.0
ENV REDCAP_PLUGIN_VERSION=2.0.0
ENV SPSS_PLUGIN_VERSION=2.0.0
Expand All @@ -25,14 +25,14 @@ ENV VALIDATE_PLUGIN_VERSION=2.0.0
WORKDIR /tmp
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get upgrade -y && \
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y daemon psmisc apt-transport-https unzip curl python3-pip libcurl4-openssl-dev libssl-dev && \
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y daemon psmisc apt-transport-https unzip curl pipx libcurl4-openssl-dev libssl-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

COPY --from=gosu /usr/local/bin/gosu /usr/local/bin/

# Install Opal Python Client
RUN pip install obiba-opal
RUN pipx install obiba-opal

# Install Opal Server
RUN set -x && \
Expand Down

0 comments on commit cfd51db

Please sign in to comment.