fedilogue/restapi/Dockerfile

8 lines
180 B
Docker
Raw Normal View History

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