Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
Removing staging url for billing from dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
phutchins committed Apr 14, 2017
1 parent bd18ca6 commit 2446418
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions dockerfiles/billing-importer.dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
FROM node:6

COPY ./dockerfiles/files/billing-queries.package.json /root/package.json

RUN npm install

COPY ./bin /root/bin/
COPY ./lib/queries /root/lib/queries
COPY ./lib/utils /root/lib/utils
COPY ./lib/constants.js /root/lib/constants.js
ENV BILLING_URL https://billing.staging.storj.io

ENV BILLING_URL http://billing

RUN chmod +x /root/bin/billing-queries.js

WORKDIR /root

RUN npm install

CMD node /root/bin/billing-queries.js

0 comments on commit 2446418

Please sign in to comment.