diff --git a/examples/websocket-server/Dockerfile b/examples/websocket-server/Dockerfile new file mode 100644 index 000000000..0610ab7f8 --- /dev/null +++ b/examples/websocket-server/Dockerfile @@ -0,0 +1,15 @@ +FROM python:3.10-bullseye + +RUN mkdir /app + +COPY *.py /app/ +COPY requirements.txt /app/ +COPY .env /app/ + +WORKDIR /app + +RUN pip3 install -r requirements.txt + +EXPOSE 7860 + +CMD ["python3", "bot.py"]