This repository has been archived on 2021-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
nginx-index/Dockerfile
Simon Bruder 0bbbd68dbe
All checks were successful
continuous-integration/drone/push Build is passing
Init
2020-02-02 10:43:48 +00:00

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