Skip to content

Commit

Permalink
Update Dockerfile to remove sticky bit during build (#3567)
Browse files Browse the repository at this point in the history
* Update Dockerfile to remove sticky bit during build

* no sudo?
  • Loading branch information
jp-bennett authored Apr 7, 2024
1 parent 33842b6 commit 40a7fd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN python3 -m venv /tmp/firmware
RUN source ./bin/activate && pip3 install --no-cache-dir -U platformio==6.1.14

COPY . /tmp/firmware
RUN source ./bin/activate && chmod +x /tmp/firmware/bin/build-native.sh && ./bin/build-native.sh
RUN source ./bin/activate && chmod -t /tmp/firmware -R && chmod +x /tmp/firmware/bin/build-native.sh && ./bin/build-native.sh
RUN cp "/tmp/firmware/release/meshtasticd_linux_$(uname -m)" "/tmp/firmware/release/meshtasticd"


Expand Down

0 comments on commit 40a7fd1

Please sign in to comment.