Hellper / Dokerfile
OlgaKo's picture
Upload 15 files
bfeb399
raw
history blame
120 Bytes
FROM python:alpine
WORKDIR /app
COPY _ /app
RUN pip3 install -r requiremens.txt
EXPOSE 5000
CMD ["python3", "planer.py"]