mirror of
https://github.com/aljazceru/sciencestr.git
synced 2025-12-16 21:44:26 +01:00
11 lines
206 B
Plaintext
11 lines
206 B
Plaintext
# Dockerfile-science-bot
|
|
FROM python:3.9
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements-bot.txt ./
|
|
RUN pip install --no-cache-dir -r requirements-science-bot.txt
|
|
|
|
COPY science-bot.py .
|
|
|
|
CMD ["python", "./science-bot.py"] |