mirror of
https://github.com/nikdoof/smsbot.git
synced 2025-12-13 10:02:15 +00:00
5 lines
111 B
Docker
5 lines
111 B
Docker
FROM python:3.9-alpine
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN pip install -r requirements.txt
|
|
ENTRYPOINT python smsbot.py |