mirror of
https://github.com/didi/KnowStreaming.git
synced 2026-01-01 09:42:11 +08:00
9 lines
233 B
Docker
9 lines
233 B
Docker
FROM debian:stable-20220912-slim
|
|
LABEL org.opencontainers.image.authors="haoqi123"
|
|
ENV INIT_ES_FILE=./init/*
|
|
COPY ${INIT_ES_FILE} /
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y curl
|
|
|
|
ENTRYPOINT ["/bin/bash","/template.sh","start"] |