salix/services/nginx/Dockerfile

17 lines
355 B
Docker
Raw Normal View History

2018-12-27 11:54:16 +00:00
FROM debian:stretch-slim
EXPOSE 80
2016-11-17 09:18:11 +00:00
2018-12-27 11:54:16 +00:00
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y apt-utils \
&& apt-get install -y \
curl \
gnupg2 \
&& curl -sL https://deb.nodesource.com/setup_8.x | bash - \
&& apt-get install -y \
nginx \
nodejs \
&& npm -g install pm2
2016-11-17 09:18:11 +00:00
2018-12-27 11:54:16 +00:00
CMD ["bash"]