Dokku deployment recipe

This commit is contained in:
2020-05-20 19:29:13 +02:00
parent b996a07cbd
commit e26cb7ad49
4 changed files with 48 additions and 6 deletions

24
misc/dokku/Dockerfile Normal file
View File

@ -0,0 +1,24 @@
FROM golang:1.13 AS build
ARG HTTP_PROXY=
ARG HTTPS_PROXY=
ARG http_proxy=
ARG https_proxy=
RUN apt-get update && apt-get install -y build-essential git bash
COPY . /src
WORKDIR /src
RUN make ARCH_TARGETS=amd64 release
FROM busybox
COPY --from=build /src/release/server-linux-amd64 /app
WORKDIR /app
ENV HTTP_ADDRESS=:80
CMD ["bin/server", "-workdir", "/app", "-config", "server.yml"]