1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

deps.sh: unify handling of special cases

This commit is contained in:
Steffen Vogel 2021-05-09 17:22:41 +02:00
parent ec3baca612
commit fdaebba9cc
2 changed files with 2 additions and 2 deletions

View file

@ -135,7 +135,6 @@ fi
# Build & Install uldaq
if ! pkg-config "libuldaq >= 1.0.0" && \
[ "${DISTRO}" != "debian-multiarch" ] && \
[ -z "${SKIP_ULDAQ}" ]; then
git clone --branch rpmbuild --depth 1 https://github.com/stv0g/uldaq
pushd uldaq

View file

@ -106,7 +106,8 @@ ENV TRIPLET=${TRIPLET}
# Install unpackaged dependencies from source
ADD packaging/deps.sh /
RUN bash deps.sh
RUN export SKIP_ULDAQ=1; \
bash deps.sh
# Expose ports for HTTP and WebSocket frontend
EXPOSE 80