diff options
| author | Fuwn <[email protected]> | 2023-07-21 17:53:09 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-07-21 17:53:09 -0700 |
| commit | 49959526d2604510c625520b51270d42b7a23a49 (patch) | |
| tree | 88787d4df41a332a76b6c3256383bd9ec082c949 /Dockerfile | |
| download | hayai-49959526d2604510c625520b51270d42b7a23a49.tar.xz hayai-49959526d2604510c625520b51270d42b7a23a49.zip | |
feat: initial release
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6d275ff --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3.11-alpine + +WORKDIR /hayai + +COPY requirements.txt requirements.txt + +RUN pip3 install -r requirements.txt + +COPY . . + +EXPOSE 5000 + +CMD ["python", "-m", "flask", "--app", "hayai", "run", "--host=0.0.0.0"] |