@ -0,0 +1,5 @@
FROM ubuntu:latest
COPY to_run.sh to_run.sh
CMD [ "/bin/bash", "to_run.sh" ]
RUN apt-get update && apt-get install -y curl
ENTRYPOINT [ "curl" ]
@ -0,0 +1,10 @@
FROM python:2.7
COPY requirements.txt requirements.txt
COPY app.py app.py
RUN pip install -r requirements.txt
EXPOSE 5000
CMD [ "python", "app.py" ]
@ -0,0 +1,7 @@
services:
convos:
image: convos/convos:v6.31
ports:
- "2021:3000"
volumes:
- ./data:/data:z