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

more idiomatic setup for Dockerfile

This commit is contained in:
2021-08-30 12:52:46 -07:00
parent 42bb17dd40
commit e56679f29f
2 changed files with 1 additions and 1 deletions

7
.devcontainer/Dockerfile 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 . .