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
13 lines
433 B
FROM nginx:1.15.10-alpine
|
|
|
|
# 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
|
|
|
|
# Copy wait-for script
|
|
COPY ./wait-for /wait-for
|
|
|
|
RUN chmod u+x /wait-for && \
|
|
chmod g+x /wait-for
|