2016-12-31 02:19:20 +09: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-31 06:20:09 +09:00
|
|
|
RUN rm /etc/localtime
|
2016-12-31 02:19:20 +09: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-07-25 00:29:18 +09:00
|
|
|
RUN pacman -S --noconfirm git nodejs npm mongodb redis
|
2016-12-31 02:19:20 +09:00
|
|
|
|
2016-12-31 13:06:46 +09:00
|
|
|
COPY misskey.sh /root/misskey.sh
|
2016-12-31 02:19:20 +09:00
|
|
|
RUN chmod u+x /root/misskey.sh
|
|
|
|
|
|
|
|
EXPOSE 80
|
|
|
|
EXPOSE 443
|
|
|
|
EXPOSE 27017
|
|
|
|
|
|
|
|
CMD ["/root/misskey.sh"]
|