websub-hub/Dockerfile
Peter Stuifzand 6e25373072
Some checks failed
continuous-integration/drone/push Build is failing
Use alpine Dockerfile
2019-03-18 21:53:14 +01:00

7 lines
129 B
Docker

FROM alpine
RUN apk update && apk add ca-certificates
WORKDIR /app
COPY ./hubserver /app
EXPOSE 80
ENTRYPOINT ["/app/hubserver"]