This repository has been archived on 2021-04-04. You can view files and clone it, but cannot push or open issues/pull-requests.
nginx-index/Dockerfile

9 lines
140 B
Docker

FROM nginx:alpine
RUN mkdir /srv/www
COPY assets /usr/share/nginx/html/assets
COPY default.conf /etc/nginx/conf.d/default.conf
EXPOSE 80