Skip to content

Commit

Permalink
Update dev.Dockerfile
Browse files Browse the repository at this point in the history
Co-authored-by: Kévin Dunglas <[email protected]>
  • Loading branch information
AlliBalliBaba and dunglas authored Sep 5, 2024
1 parent 53456f7 commit c61e42c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ ARG FSWATCH_VERSION='1.17.1'
WORKDIR /usr/local/src/fswatch
RUN curl -L https://github.com/emcrisostomo/fswatch/releases/download/$FSWATCH_VERSION/fswatch-$FSWATCH_VERSION.tar.gz | tar xz
WORKDIR /usr/local/src/fswatch/fswatch-$FSWATCH_VERSION
RUN ./configure && make && make install && ldconfig && fswatch --version
RUN ./configure && \
make -j"$(nproc)" && \
make install && \
ldconfig && \
fswatch --version

WORKDIR /go/src/app
COPY . .
Expand Down

0 comments on commit c61e42c

Please sign in to comment.