11 lines
202 B
Docker
11 lines
202 B
Docker
FROM python:3.11.3-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY dependencies.txt .
|
|
RUN pip install --no-cache-dir -r dependencies.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["sh", "-c", "python ./api/bootstrap_db.py && python ./telepot/tele.py"]
|