Dockerfile support

This commit is contained in:
klemek
2021-01-21 11:39:58 +01:00
parent 0cebda1936
commit 4f71feb6d7
Executable
+13
View File
@@ -0,0 +1,13 @@
FROM python
# Create app directory
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install -r requirements.txt
# Bundle app source
COPY . .
CMD [ "sh", "-c", "python src/main.py" ]