This means a bit more adjustment on the part of developers that aren't familiar with how Go does things, but it makes it more consistent and easier to work with when on multiple Go projects.
9 lines
148 B
Docker
9 lines
148 B
Docker
FROM scratch
|
|
MAINTAINER Dr. Sybren <sybren@blender.studio>
|
|
|
|
EXPOSE 80
|
|
|
|
ADD flamenco-manager /
|
|
ADD flamenco-manager.yaml /
|
|
CMD ["/flamenco-manager"]
|