Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
BarzaH committed Oct 19, 2022
1 parent 63dd227 commit bba5b64
Show file tree
Hide file tree
Showing 722 changed files with 450,110 additions and 1 deletion.
Binary file added .DS_Store
Binary file not shown.
20 changes: 20 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
FROM python:3.8.3-slim-poetry


RUN /bin/bash -c 'source $HOME/.poetry/env'
COPY . /code
WORKDIR code

RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -

RUN /bin/bash -c 'source $HOME/.poetry/env \
&& /root/.local/bin/poetry --version'

RUN /bin/bash -c 'source $HOME/.poetry/env \
&& /root/.local/bin/poetry config virtualenvs.create false \
&& /root/.local/bin/poetry install --no-interaction --no-ansi'


RUN apt-get -y install iotop
RUN export PYTHONPATH=.
RUN chmod +x /code/entrypoint.sh && chmod +x /code/run_tests.sh && /bin/bash -c "/code/run_tests.sh"
Loading

0 comments on commit bba5b64

Please sign in to comment.