Skip to content

Commit

Permalink
adduser added
Browse files Browse the repository at this point in the history
  • Loading branch information
ymarcon committed Aug 28, 2024
1 parent 4ff6fe6 commit 82fbf35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ ENV VALIDATE_PLUGIN_VERSION=1.1.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 pipx 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 python3-pip libcurl4-openssl-dev libssl-dev adduser && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

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

# Install Opal Python Client
RUN pipx install obiba-opal
RUN pipx ensurepath && pipx install obiba-opal

# Install Opal Server
RUN set -x && \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ all:

# Build Docker image
build:
sudo docker build --no-cache=$(no_cache) -t="obiba/opal:$(tag)" .
sudo docker build --no-cache=$(no_cache) --progress=plain -t="obiba/opal:$(tag)" .

push:
sudo docker image push obiba/opal:$(tag)
Expand Down

0 comments on commit 82fbf35

Please sign in to comment.