ekster/Dockerfile
Peter Stuifzand caf9ecc6ad
All checks were successful
continuous-integration/drone/push Build is passing
Compile execute inside Docker context
2019-08-07 00:29:03 +02:00

8 lines
168 B
Docker

FROM alpine:3.7
RUN apk --no-cache add ca-certificates
WORKDIR /opt/micropub
EXPOSE 80
COPY ./eksterd /app/
COPY ./templates /app/templates
ENTRYPOINT ["/app/eksterd"]