Files
swagger-ui/Dockerfile
Roman Tarnavski 595f604379 - added nginx.conf to provide greater flexibility of configuration (ie. listening port)
- reverted to port 8080 for the docker image
2016-05-07 17:46:45 +10:00

12 lines
175 B
Docker

FROM alpine:3.3
MAINTAINER Roman Tarnavski
RUN apk add --update nginx
COPY nginx.conf /etc/nginx/
ADD ./dist/ /usr/share/nginx/html
EXPOSE 8080
CMD nginx -g 'daemon off;'