bang/backend/Dockerfile
Alberto Xamin db3b07e8e0
add docker
2020-11-21 17:37:42 +01:00

8 lines
149 B
Docker

FROM python:3.7-slim-stretch
WORKDIR /code
COPY * /code/
RUN pip install -r requirements.txt
EXPOSE 5001
ENTRYPOINT ["python", "/code/__init__.py"]