mirror of
https://gitlab.com/simple-stock-bots/simple-stock-bot.git
synced 2025-06-16 07:16:40 +00:00
8 lines
147 B
Docker
8 lines
147 B
Docker
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 . .
|
|
|