Skip to content

Commit

Permalink
Update core/federated/RTI/rti.Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Depetrol authored Aug 2, 2024
1 parent 6816993 commit 5aa65f4
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions core/federated/RTI/rti.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@ ARG BASEIMAGE=alpine:latest
FROM ${BASEIMAGE} as builder
COPY . /lingua-franca
WORKDIR /lingua-franca/core/federated/RTI
RUN apk add --no-cache \
gcc musl-dev cmake make \
libressl-dev
RUN mkdir -p build
WORKDIR /lingua-franca/core/federated/RTI/build
RUN cmake -DAUTH=on ..
RUN make
RUN make install
RUN set -ex && apk add --no-cache gcc musl-dev cmake make && \
mkdir container && \
cd container && \
cmake ../ && \
make && \
make install

WORKDIR /lingua-franca

Expand Down

0 comments on commit 5aa65f4

Please sign in to comment.