✌️
This commit is contained in:
parent
5f78ef943e
commit
c3d5ed19b8
3 changed files with 16 additions and 15 deletions
32
Dockerfile
Normal file
32
Dockerfile
Normal file
|
@ -0,0 +1,32 @@
|
|||
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
|
||||
|
||||
RUN rm /etc/localtime
|
||||
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
|
||||
|
||||
RUN pacman -S --noconfirm git nodejs npm mongodb redis
|
||||
|
||||
RUN echo '#!/bin/sh' >> /root/misskey.sh
|
||||
RUN echo 'redis-server --daemonize yes' >> /root/misskey.sh
|
||||
RUN echo 'mongod > /dev/null &' >> /root/misskey.sh
|
||||
RUN echo 'cd /root/misskey' >> /root/misskey.sh
|
||||
RUN echo 'npm start' >> /root/misskey.sh
|
||||
RUN echo 'tail -f /dev/null' >> /root/misskey.sh
|
||||
RUN chmod u+x /root/misskey.sh
|
||||
|
||||
EXPOSE 80
|
||||
EXPOSE 443
|
||||
EXPOSE 27017
|
||||
|
||||
CMD ["/root/misskey.sh"]
|
Loading…
Add table
Add a link
Reference in a new issue