This commit is contained in:
www
2021-01-15 20:09:15 +00:00
parent 3d3474a2e1
commit 27da59f0c0
5 changed files with 18 additions and 34 deletions

View File

@@ -1,5 +1,7 @@
from theiaide/theia-python:latest
RUN wget https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz && tar -xvf docker-20.10.2.tgz docker/docker && cp docker/docker /usr/bin/
run apt-get update && apt-get -y install libgs-dev
WORKDIR /home/project
COPY ./requirements.txt .
run pip3 install --upgrade pip && pip3 install -r requirements.txt && pip3 install pytest pylint bandit flake8 black pytest-django six pytest-mock
COPY . .