19 lines
266 B
Docker
19 lines
266 B
Docker
FROM ubuntu:latest
|
|
|
|
|
|
RUN apt-get update
|
|
|
|
|
|
RUN apt-get install -y \
|
|
python3 \
|
|
python3-pip \
|
|
borgbackup \
|
|
fuse \
|
|
python3-pyfuse3 \
|
|
openssh-client
|
|
|
|
COPY ./docker/app /app
|
|
RUN chmod +x /app/scripts/ffenv
|
|
RUN ln -s /app/scripts/ffenv /usr/local/lib/ffenv
|
|
|