taiko-web/Dockerfile
2024-02-13 06:43:30 +09:00

6 lines
111 B
Docker

FROM python:latest
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["bash","-eux","start.sh"]