added pandas to requirements,

readded dev docker files


Former-commit-id: 3fa4ef57e5e9542ce245ab0ef9b8320e21c9507c
This commit is contained in:
Arthur Lu
2022-03-14 01:53:50 +00:00
parent 8c28c24d60
commit 3c6e3ac58e
4 changed files with 45 additions and 0 deletions

6
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM python:slim
WORKDIR /
RUN apt-get -y update; apt-get -y upgrade
RUN apt-get -y install git binutils
COPY requirements.txt .
RUN pip install -r requirements.txt