Skip to content

Commit

Permalink
added docker config file
Browse files Browse the repository at this point in the history
  • Loading branch information
kiridarivaki committed Apr 25, 2024
1 parent 02aa7d5 commit 0df814b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions skillsync/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM python:3.10
WORKDIR /skillsync
ENV PYTHONPATH="${PYTHONPATH}:/skillsync/src/main/python"
COPY . /skillsync/
RUN pip install --upgrade pip && pip install -r requirements.txt
CMD ["python", "src/main/python/main.py"]
4 changes: 4 additions & 0 deletions skillsync/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pytest
pytest-mock
flake8
coverage

0 comments on commit 0df814b

Please sign in to comment.