aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: ce727e73de381304e7ec5cfa20720344efc6b87b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.11-alpine

WORKDIR /hayai

COPY requirements.txt requirements.txt

RUN pip3 install -r requirements.txt

RUN pip3 install epr-reader

COPY . .

EXPOSE 5000

CMD ["python", "-m", "flask", "--app", "hayai", "run", "--host=0.0.0.0"]