-
Notifications
You must be signed in to change notification settings - Fork 0
dockerfile_keepwork
LiZhiqiang edited this page May 3, 2017
·
2 revisions
# npl-keepwork by 2017-04-12
FROM xuntian/npl-runtime:latest
MAINTAINER xuntian "li.zq@foxmail.com"
RUN apt-get -y update && apt-get -y install nginx && apt-get clean && rm -rf /var/lib/apt/lists/*
ADD nginx_config /etc/nginx/sites-available/default
EXPOSE 80
EXPOSE 8099
RUN cd /opt && git clone -b wxa_dev https://github.com/Xuntian/wikicraft
WORKDIR /opt/wikicraft
CMD ["./wikicraft.sh", "start"]