mirror of
https://github.com/typesense/typesense.git
synced 2025-05-21 22:33:27 +08:00
Builds the development image and the deployment image on the same script when an extra is passed.
7 lines
147 B
Docker
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"] |