typesense/docker/deployment.Dockerfile
Kishore Nallan 4c32dbfa07 Unified docker build shell script.
Builds the development image and the deployment image on the same script when an extra is passed.
2017-07-09 20:46:06 +05:30

7 lines
147 B
Docker

FROM ubuntu:16.04
RUN mkdir -p /opt
COPY typesense-server /opt
RUN chmod +x /opt/typesense-server
EXPOSE 8108
ENTRYPOINT ["/opt/typesense-server"]