taiko-web/Dockerfile

6 lines
111 B
Docker
Raw Normal View History

2023-10-05 16:47:38 +02:00
FROM python:latest
COPY . /app
WORKDIR /app
2023-11-19 05:42:17 +01:00
RUN pip install -r requirements.txt
CMD ["bash","-eux","start.sh"]