mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-28 16:20:34 +08:00
8 lines
174 B
Docker
8 lines
174 B
Docker
FROM python:3.10-slim-bullseye
|
|
RUN mkdir /app
|
|
ADD requirements.txt /app/requirements.txt
|
|
WORKDIR /app
|
|
RUN pip install -r requirements.txt
|
|
ADD . /app
|
|
CMD ["python", "bot.py"]
|