Skip to content

Commit

Permalink
Various small bugfixes identified by a bit more testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
rebeccathedev committed Feb 7, 2022
1 parent 270756d commit f44fac1
Show file tree
Hide file tree
Showing 6 changed files with 16,384 additions and 25 deletions.
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ COPY ./src/ /usr/src/petfeedd/src/
COPY ./package* /usr/src/petfeedd
COPY ./*.config.js /usr/src/petfeedd
WORKDIR /usr/src/petfeedd
RUN apk add --update nodejs-lts npm python3 make g++ && \
RUN apk add --update nodejs-lts npm python3 make g++ wget unzip && \
wget https://github.com/joan2937/pigpio/archive/refs/tags/v79.zip && \
unzip v79.zip && \
cd pigpio-79 && \
sed -i -e 's/ldconfig/echo ldconfig disabled/g' Makefile && \
make && make install && \
cd .. && \
npm ci && \
npx webpack && \
mv output /usr/src/app && \
Expand Down
Loading

0 comments on commit f44fac1

Please sign in to comment.