Dockerfile 284 B

123456789101112
  1. # Copyright IBM Corp, All Rights Reserved.
  2. #
  3. # SPDX-License-Identifier: Apache-2.0
  4. #
  5. FROM hyperledger/cello-baseimage:x86_64-latest
  6. # use this in development
  7. CMD ["python", "restserver.py"]
  8. # use this in product
  9. #CMD ["gunicorn", "-w", "128", "-b", "0.0.0.0:80", "restserver:app"]