2016-12-30 11:19:20 -06:00
|
|
|
FROM base/archlinux
|
|
|
|
|
|
|
|
MAINTAINER Aya Morisawa
|
|
|
|
|
|
|
|
RUN rm /etc/pacman.d/mirrorlist
|
|
|
|
RUN echo 'Server = http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch' >> /etc/pacman.d/mirrorlist
|
|
|
|
RUN echo 'Server = http://ftp.tsukuba.wide.ad.jp/Linux/archlinux/$repo/os/$arch' >> /etc/pacman.d/mirrorlist
|
|
|
|
|
2016-12-30 15:20:09 -06:00
|
|
|
RUN rm /etc/localtime
|
2016-12-30 11:19:20 -06:00
|
|
|
RUN ln -s /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
|
|
|
|
|
|
|
|
RUN pacman -Sy --noconfirm
|
|
|
|
RUN pacman -S --noconfirm pacman
|
|
|
|
RUN pacman-db-upgrade
|
|
|
|
RUN pacman -S --noconfirm archlinux-keyring
|
|
|
|
RUN pacman -Syyu --noconfirm
|
2018-03-28 21:19:53 -05:00
|
|
|
RUN pacman -S --noconfirm git nodejs npm mongodb redis imagemagick
|
2016-12-30 11:19:20 -06:00
|
|
|
|
2016-12-30 22:06:46 -06:00
|
|
|
COPY misskey.sh /root/misskey.sh
|
2016-12-30 11:19:20 -06:00
|
|
|
RUN chmod u+x /root/misskey.sh
|
|
|
|
|
|
|
|
EXPOSE 80
|
|
|
|
EXPOSE 443
|
|
|
|
EXPOSE 27017
|
|
|
|
|
|
|
|
CMD ["/root/misskey.sh"]
|