Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnorNelson committed Oct 4, 2024
1 parent 24c519f commit e5ceff0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 3 additions & 6 deletions dojofs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,13 @@ FROM python:3.12-slim

RUN apt-get update && \
apt-get install -y \
fuse \
gcc \
libfuse-dev \
pkg-config && \
fuse && \
rm -rf /var/lib/apt/lists/* && \
pip install \
docker \
fusepy && \
mkdir -p /run/fuse/dojofs

COPY ./dojofs.py /bin/dojofs
COPY ./dojofs /usr/local/bin/dojofs

CMD ["/bin/dojofs", "/run/fuse/dojofs"]
CMD ["dojofs", "/run/fuse/dojofs"]
2 changes: 2 additions & 0 deletions dojofs/dojofs.py → dojofs/dojofs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import stat
import sys
import time
Expand Down

0 comments on commit e5ceff0

Please sign in to comment.