diff options
author | Emiliano Ciavatta | 2020-04-01 12:21:58 +0000 |
---|---|---|
committer | Emiliano Ciavatta | 2020-04-01 12:21:58 +0000 |
commit | 2b9ccbe76c6975fe7cd09a3260ba459d59b9970a (patch) | |
tree | 6eaf94a797261f2db0736d4abe999db219fcad7a /Dockerfile |
Initial commit
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2a1ffc8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM eciavatta/caronte-env + +COPY . /caronte + +WORKDIR /caronte + +RUN go mod download && go build + +CMD ./caronte + |