You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
433 B

FROM nginx:1.15.10-alpine
6 years ago
# Copy configuration files
COPY ./nginx.conf /etc/nginx/nginx.conf
COPY ./dojo.conf /etc/nginx/sites-enabled/dojo.conf
COPY ./dojo-explorer.conf /etc/nginx/sites-enabled/dojo-explorer.conf
COPY ./dojo-whirlpool.conf /etc/nginx/sites-enabled/dojo-whirlpool.conf
6 years ago
# Copy wait-for script
COPY ./wait-for /wait-for
6 years ago
RUN chmod u+x /wait-for && \
chmod g+x /wait-for