Skip to content

Commit

Permalink
chore(Dockerfile): do not install bash and import only necessary files
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-cristino authored and jaromil committed Sep 24, 2024
1 parent cd33931 commit 5a0901d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@

FROM alpine:latest

ADD . /
COPY lib /lib
COPY src /src
COPY build /build
COPY Makefile Makefile

RUN apk add --no-cache linux-headers build-base cmake readline-dev bash
RUN apk add --no-cache linux-headers build-base cmake readline-dev
RUN make linux
RUN cp /src/zenroom /usr/local/bin/zenroom

Expand Down

0 comments on commit 5a0901d

Please sign in to comment.