All checks were successful
/ build-docker-image (push) Successful in 11s
17 lines
264 B
Docker
17 lines
264 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/bin/ffenv
|
|
|