OSDN Git Service

fix link in Tag list page (#7661)
[newslash/newslash.git] / build-container / Dockerfile
1 FROM debian:stretch
2 MAINTAINER hirom@osdn.jp
3
4 # use Japanese mirror
5 COPY files/jaist.list /etc/apt/sources.list
6
7 # install basic packages
8 RUN apt-get update -y
9 RUN apt-get install -y devscripts git
10 RUN apt-get install -y debhelper cdbs
11
12 COPY files/entrypoint.sh /entrypoint.sh
13 RUN chmod 755 /entrypoint.sh
14 ENTRYPOINT ["/entrypoint.sh"]
15 VOLUME ["/var/newslash/build"]
16