test-selenium / docker /Dockerfile-selenium
tqhoa's picture
test
063b4bb
raw
history blame contribute delete
194 Bytes
FROM python:3.9-alpine
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
#CMD ["flask", "run", "--host=0.0.0.0"]
#CMD python app.py
CMD ["python", "main.py"]