fedilogue/restapi/Dockerfile
2021-03-17 23:14:24 +00:00

8 lines
180 B
Docker

FROM golang:alpine
COPY . /app
WORKDIR /app
RUN go build .
ENV DATABASE_URL "postgres://fedilogue:fedilogue@db/fedilogue"
ENV PGPASSWORD "fedilogue"
ENTRYPOINT ["./entrypoint.sh"]