-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
78 lines (64 loc) · 1.58 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# GGCOM - Docker - hubiC v201604260115
# Louis T. Getterman IV (@LTGIV)
# www.GotGetLLC.com | www.opensour.cc/ggcom/docker/hubic
#
# Thanks:
#
# opensour.cc - hubiC
# https://www.opensour.cc/hubic
#
################################################################################
FROM ubuntu:latest
MAINTAINER GotGet, LLC <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y update && apt-get -y install \
curl \
duply \
encfs \
gcc \
git \
libcurl4-openssl-dev \
libfuse-dev \
libjson-c-dev \
libmagic-dev \
libssl-dev \
libxml2-dev \
make \
nano \
pkg-config \
rsnapshot \
rsync \
sshfs \
tree
USER root
WORKDIR /root
ENV HOME /root
RUN mkdir -p /tmp/hubicfuse
RUN git clone https://github.com/TurboGit/hubicfuse /tmp/hubicfuse
# Compile HubicFuse
WORKDIR /tmp/hubicfuse
RUN ./configure
# Install HubicFuse
RUN make && make install
# Create mountpoint and bin
RUN mkdir -p /mnt/hubic/
# Move token config to bin
RUN mv /tmp/hubicfuse/hubic_token /usr/local/bin
# Easy Hubic access
RUN ln -s /mnt/hubic/default $HOME/hubic
RUN ln -s /mnt/hubic/default /hubic
# Clean-up after ourselves
RUN apt-get -y purge \
gcc \
git \
make \
pkg-config
RUN apt-get -y autoremove
RUN rm -rf /tmp/*
################################################################################
# Load helper program
ADD bin/init.bash /usr/local/bin/init.bash
WORKDIR /usr/local/bin
RUN chmod 755 init.bash
WORKDIR $HOME
ENTRYPOINT [ "/bin/bash", "/usr/local/bin/init.bash" ]