Skip to content

Commit

Permalink
Add dependencies to Dockerfile
Browse files Browse the repository at this point in the history
Fixes missing curl and zlib dependencies when building
  • Loading branch information
daz authored Jan 4, 2024
1 parent 020d61f commit 08d4547
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG SDK_KEY
ENV SDK_KEY=${SDK_KEY}

RUN apt-get update
RUN apt-get install -y wget git gcc g++ make cmake
RUN apt-get install -y wget git gcc g++ make cmake libcurl4-openssl-dev zlib1g-dev

WORKDIR /parse_flyrecord

Expand All @@ -13,4 +13,4 @@ COPY . .
WORKDIR /parse_flyrecord/dji-flightrecord-kit/build/Ubuntu/FRSample
RUN sh generate.sh

ENTRYPOINT ["./FRSample"]
ENTRYPOINT ["./FRSample"]

0 comments on commit 08d4547

Please sign in to comment.