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.
 
 
 
 
kratos/examples/traces/Dockerfile

16 lines
366 B

FROM debian:stable-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
netbase \
&& rm -rf /var/lib/apt/lists/ \
&& apt-get autoremove -y && apt-get autoclean -y
COPY ./app/message/bin /app
COPY ./app/user/bin /app
COPY ./service.sh /app
EXPOSE 8000
EXPOSE 9000
ENTRYPOINT ["sh","/app/service.sh"]