Skip to content

Commit

Permalink
Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-helmich committed Apr 29, 2017
1 parent 244cd29 commit adb5c74
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM nginx:1.11-alpine

COPY index.html /usr/share/nginx/html/
COPY dist /usr/share/nginx/html/
COPY node_modules/bootstrap/dist/css/bootstrap.min.css /usr/share/nginx/html/bootstrap/dist/css/bootstrap.min.css
COPY node_modules/react/dist/react.js /usr/share/nginx/html/react/dist/react.js
COPY node_modules/react-dom/dist/react-dom.js /usr/share/nginx/html/react-dom/dist/react-dom.js
COPY node_modules/promise-polyfill/promise.min.js /usr/share/nginx/html/promise-polyfill/promise.min.js
COPY node_modules/whatwg-fetch/fetch.js /usr/share/nginx/html/whatwg-fetch/fetch.js
COPY dist /usr/share/nginx/html/dist/
COPY node_modules/bootstrap/dist/css/bootstrap.min.css /usr/share/nginx/html/node_modules/bootstrap/dist/css/bootstrap.min.css
COPY node_modules/react/dist/react.js /usr/share/nginx/html/node_modules/react/dist/react.js
COPY node_modules/react-dom/dist/react-dom.js /usr/share/nginx/html/node_modules/react-dom/dist/react-dom.js
COPY node_modules/promise-polyfill/promise.min.js /usr/share/nginx/html/node_modules/promise-polyfill/promise.min.js
COPY node_modules/whatwg-fetch/fetch.js /usr/share/nginx/html/node_modules/whatwg-fetch/fetch.js

0 comments on commit adb5c74

Please sign in to comment.