mirror of
https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git
synced 2025-06-16 15:06:53 +00:00
8 lines
147 B
Plaintext
8 lines
147 B
Plaintext
FROM python:3.9-buster
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
RUN pip install --no-cache-dir black
|
|
COPY . .
|
|
|