You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
275 B
15 lines
275 B
2 years ago
|
FROM typesense/typesense:0.24.0.rcn21
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get upgrade -y && \
|
||
|
apt-get install -y \
|
||
|
apt-transport-https \
|
||
|
ca-certificates \
|
||
|
curl \
|
||
|
gnupg-agent \
|
||
|
software-properties-common
|
||
|
|
||
|
EXPOSE 9108
|
||
|
|
||
|
ENTRYPOINT ["/opt/typesense-server"]
|