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

This commit is contained in:
2023-11-17 00:06:02 +11:00
parent 94f298ad6d
commit 79b210c8a7
47 changed files with 10031 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
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
ENTRYPOINT ["python3"]
CMD ["server.py"]
FROM builder as dev-envs