File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 4
4
# https://github.com/obiba/docker-opal
5
5
#
6
6
7
- FROM tianon/gosu:latest AS gosu
7
+ FROM docker.io/library/eclipse-temurin:21-jre-noble AS server-released
8
8
9
- FROM docker.io/library/eclipse-temurin:21-jre AS server-released
9
+ LABEL OBiBa <dev@obiba.org>
10
10
11
11
ENV OPAL_ADMINISTRATOR_PASSWORD password
12
12
ENV OPAL_HOME /srv
@@ -25,12 +25,10 @@ ENV VALIDATE_PLUGIN_VERSION=2.0.0
25
25
WORKDIR /tmp
26
26
RUN apt-get update && \
27
27
DEBIAN_FRONTEND=noninteractive apt-get upgrade -y && \
28
- DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y daemon psmisc apt-transport-https unzip curl python3-pip libcurl4-openssl-dev libssl-dev && \
28
+ DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y gosu daemon psmisc apt-transport-https unzip curl python3-pip libcurl4-openssl-dev libssl-dev && \
29
29
apt-get clean && \
30
30
rm -rf /var/lib/apt/lists/*
31
31
32
- COPY --from=gosu /usr/local/bin/gosu /usr/local/bin/
33
-
34
32
# Install Opal Python Client
35
33
RUN pip install --break-system-packages obiba-opal
36
34
You can’t perform that action at this time.
0 commit comments