Files
KnowStreaming/km-dist/docker/knowstreaming-init/Dockerfile

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"]