Hellper / Dockerfile
OlgaKo's picture
Update Dockerfile
9a9a19a
raw
history blame
149 Bytes
FROM python:alpine
WORKDIR /app
COPY . /app
RUN pip3 install -r requirements.txt
CMD ["python3", "planer.py", "--host", "0.0.0.0", "--port", "7860"]