This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/docker/nginx/Dockerfile

10 lines
350 B
Docker

FROM openresty/openresty:1.19.3.1-8-bionic
RUN apt-get update -qq && apt-get install cron logrotate -qq
RUN luarocks install luasocket
# change "syslog" user to "adm" user in logrotate.conf
RUN sed -i 's/^su root syslog/su root adm/' /etc/logrotate.conf
CMD ["sh", "-c", "service cron start ; /usr/local/openresty/bin/openresty -g 'daemon off;'"]