added base files

This commit is contained in:
git
2021-02-10 20:34:40 +01:00
parent b36f718908
commit 529ebba77b
4 changed files with 70 additions and 0 deletions

8
dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3-alpine
COPY . /code/
WORKDIR /code/
RUN pip install -r /code/requirements.txt
CMD ["python","src/api.py"]