Skip to content

Commit

Permalink
Update rti.Dockerfile
Browse files Browse the repository at this point in the history
Address GitHub's linter warnings.
  • Loading branch information
lhstrh authored Sep 24, 2024
1 parent f958a23 commit a45b378
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/federated/RTI/rti.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG BASEIMAGE=alpine:latest
FROM ${BASEIMAGE} as builder
FROM ${BASEIMAGE} AS builder
COPY . /lingua-franca
WORKDIR /lingua-franca/core/federated/RTI
RUN set -ex && apk add --no-cache gcc musl-dev cmake make && \
Expand All @@ -12,7 +12,7 @@ RUN set -ex && apk add --no-cache gcc musl-dev cmake make && \
WORKDIR /lingua-franca

# application stage
FROM ${BASEIMAGE} as app
FROM ${BASEIMAGE} AS app
LABEL maintainer="lf-lang"
LABEL source="https://github.com/lf-lang/reactor-c/tree/main/core/federated/RTI"
COPY --from=builder /usr/local/bin/RTI /usr/local/bin/RTI
Expand Down

0 comments on commit a45b378

Please sign in to comment.