forked from akshmakov/cvs2git-migrator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.arm32v7
56 lines (40 loc) · 1.37 KB
/
Dockerfile.arm32v7
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
FROM arm32v7/ubuntu:16.04
LABEL maintainer="[email protected]"
# cvsclone compilation
WORKDIR /tmp/
#Copy this strange flex file - sigh
COPY external/cvsclone.l /tmp/
# Install Base Required Packages
# Currently this image builds the cvsclone tool
# but eventually will move to a seperate build script
# cvsclone is not maintained but fully functional in a
# static environment like docker
# we make use of it for convenience
RUN apt-get update &&\
apt-get install -y \
cvs \
cvs2svn \
git \
ruby \
gcc \
flex \
cowsay &&\
rm -rf /var/lib/apt/lists/* &&\
flex cvsclone.l &&\
gcc -Wall -O2 lex.yy.c -o cvsclone &&\
mv cvsclone /usr/local/bin/cvsclone &&\
apt-get purge -y gcc flex &&\
apt-get autoremove -y &&\
rm -rf /var/lib/apt/lists/* &&\
rm /tmp/*
#set up environment
WORKDIR /workdir/
ENV HOME=/workdir/
VOLUME /workdir/
COPY cvs2git-migrator.sh /usr/local/bin/cvs2git-migrator
COPY cvs2git-migrator-default.options /etc/cvs2git-migrator/cvs2git.options
COPY external/git-move-refs.py /usr/local/bin/git-move-refs.py
RUN mkdir -p /workdir/.cvs2git-migrator/cache &&\
chmod +x /usr/local/bin/*
ENTRYPOINT [ "cvs2git-migrator" ]
CMD ["-h"]