Skip to content

Commit

Permalink
fix: Add build-time dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
peacekeeper committed Apr 16, 2024
1 parent 6249518 commit 3a61d0a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions uni-registrar-web/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
FROM maven:3-eclipse-temurin-17-focal AS build
MAINTAINER Markus Sabadello <[email protected]>

# install dependencies

RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get -y update && \
apt-get install -y --no-install-recommends patch && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# build uni-registrar-web

ADD . /opt/universal-registrar
Expand Down

0 comments on commit 3a61d0a

Please sign in to comment.