feat: Initial code drop
All checks were successful
Build Docker / Build Image (push) Successful in 35s

This commit is contained in:
2024-02-14 22:39:37 +11:00
parent 0dc3be9b4c
commit 607e11f8ec
37 changed files with 1261 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
WORKDIR /app
COPY requirements.txt /app
RUN --mount=type=cache,target=/root/.cache/pip \
pip3 install -r requirements.txt
COPY . /app
# Add mount point for data volume
VOLUME /app/data
ENTRYPOINT ["python3"]
CMD ["server.py"]
FROM builder as dev-envs