You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Think we need to provide and / or Dockerfile with an application build. The current Dockerfile version looks weird: just copying a binary file included into .gitignore, that makes impossible to build your own container and application without golang installed on a host machine. Dockerfile with app build example: https://github.com/apache/mesos/blob/master/Dockerfile
Possible approaches:
To include build process into the current Dockerfile (as a result there would be a dev container, not production ready)
To add an additional DockerfileBuild with make.sh script to build application inside this container
The text was updated successfully, but these errors were encountered:
Think we need to provide and / or
Dockerfile
with an application build. The currentDockerfile
version looks weird: just copying a binary file included into.gitignore
, that makes impossible to build your own container and application withoutgolang
installed on a host machine.Dockerfile
with app build example: https://github.com/apache/mesos/blob/master/DockerfilePossible approaches:
Dockerfile
(as a result there would be adev
container, not production ready)DockerfileBuild
withmake.sh
script to build application inside this containerThe text was updated successfully, but these errors were encountered: