Forum software. Server rendered, HTML!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
formless/Dockerfile

21 lines
268 B

FROM golang:1.15 as builder
RUN mkdir /build
ADD . /build/
WORKDIR /build
RUN make build
FROM scratch
COPY --from=builder /build/formless /app/formless
COPY --from=builder /go /goarchive
WORKDIR /app
ENV PORT 8080
ENV DBURL none
EXPOSE 8080
CMD ["./formless"]