diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..782e890 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3.12 + +WORKDIR / + +COPY ./requirements.txt ./ + +RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt + +COPY . . + +EXPOSE 9000 + +CMD ["python", "main.py"] \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..8d666d3 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,10 @@ +services: + kekkai-web: + build: . + ports: + - '9000:9000' + restart: unless-stopped + +volumes: + starlio-web: + driver: local \ No newline at end of file