This repository has been archived on 2020-09-13. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
magic-app/Dockerfile
T

10 lines
122 B
Docker

FROM python:3.8-alpine
WORKDIR /app
ADD . /app
RUN pip install -r requirements.txt
CMD ["python", "magic_app/app.py"]