1
0
mirror of https://gitlab.com/simple-stock-bots/simple-discord-stock-bot.git synced 2025-08-02 11:31:26 +00:00

embracing the devcontainers

This commit is contained in:
2021-08-15 17:48:50 -07:00
parent f434fa7c6f
commit c6db51a5cc
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 . .