10 lines
182 B
Docker
10 lines
182 B
Docker
# Chat Handler - Using handler-base
|
|
ARG BASE_TAG=latest
|
|
FROM ghcr.io/billy-davies-2/handler-base:${BASE_TAG}
|
|
|
|
WORKDIR /app
|
|
|
|
COPY chat_handler.py .
|
|
|
|
CMD ["python", "chat_handler.py"]
|