ekster/Dockerfile
Peter Stuifzand f889ebb9d9
Some checks failed
continuous-integration/drone/push Build is failing
Try absolute path in Dockerfile
2019-08-06 23:41:50 +02:00

8 lines
214 B
Docker

FROM alpine
RUN apk --no-cache add ca-certificates
WORKDIR /opt/micropub
EXPOSE 80
COPY /go/src/p83.nl/go/ekster/cmd/eksterd /app/
COPY /go/src/p83.nl/go/ekster/templates /app/templates
ENTRYPOINT ["/app/eksterd"]