snapcraft.yaml 708 B

12345678910111213141516171819202122232425262728293031
  1. name: ozwdaemon
  2. base: core20
  3. version: '0.2'
  4. summary: Single-line elevator pitch for your amazing snap # 79 char long summary
  5. description: |
  6. This is my-snap's description. You have a paragraph or two to tell the
  7. most important story about your snap. Keep it under 100 words though,
  8. we live in tweetspace and your description wants to look good in the snap
  9. store.
  10. grade: devel
  11. confinement: devmode
  12. plugs:
  13. docker-executables:
  14. interface: content
  15. target: $SNAP/docker-snap
  16. default-provider: docker
  17. apps:
  18. ozwdaemon:
  19. command: bin/wrapper
  20. plugs: [network, docker]
  21. parts:
  22. ozwdaemon:
  23. plugin: dump
  24. source: src/
  25. organize:
  26. wrapper: bin/
  27. hooks: $SNAP/hooks