Skip to content

Commit

Permalink
Merge pull request #483 from lf-lang/docker-file-lints
Browse files Browse the repository at this point in the history
Improved formatting in Dockerfile
  • Loading branch information
lhstrh authored Sep 24, 2024
2 parents f958a23 + a45b378 commit 85cdbd5
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 85cdbd5

Please sign in to comment.