Skip to content

Commit

Permalink
fix: backward compat
Browse files Browse the repository at this point in the history
  • Loading branch information
sapk committed Sep 23, 2019
1 parent 20b344a commit 5bba5be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions support/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
ARG RCLONE_VER=latest
#1.49 doesn't contain fuse yet.
ARG RCLONE_VER=1.49

FROM golang:alpine AS build-env

Expand All @@ -12,7 +11,8 @@ RUN make clean build
FROM rclone/rclone:$RCLONE_VER
LABEL maintainer="Antoine GIRARD <antoine.girard@sapk.fr>"

RUN apk add --no-cache bash \
#TODO 1.49 doesn't contain fuse yet.
RUN apk add --no-cache bash fuse \
&& mkdir -p /var/lib/docker-volumes/rclone /etc/docker-volumes/rclone \
&& ln -s /root/rclone /usr/bin/rclone
COPY --from=build-env /docker-volume-rclone/docker-volume-rclone /usr/bin/docker-volume-rclone
Expand Down

0 comments on commit 5bba5be

Please sign in to comment.