1
0
mirror of https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git synced 2025-07-25 23:51:32 +00:00

embracing devcontainers

This commit is contained in:
2021-08-15 19:21:06 -07:00
parent 9e72b8d834
commit bea03c73e3
4 changed files with 53 additions and 3 deletions

7
DockerDev Normal file
View File

@@ -0,0 +1,7 @@
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 . .