FROM python:3.9.4 WORKDIR /valne COPY requirements.txt RUN pip install -r requirements.txt COPY main.py CMD ["python3", "./main.py"] EXPOSE 7000