mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 03:15:06 +08:00
11 lines
198 B
Docker
11 lines
198 B
Docker
FROM python:3.10.13-slim
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN apt update \
|
|
&& apt install gcc -y \
|
|
&& python -m pip install -r requirements.txt \
|
|
&& touch /.dockerenv
|
|
|
|
CMD [ "python", "main.py" ] |