first commit

This commit is contained in:
2024-06-14 16:09:27 -04:00
commit 11b023cd2b
34 changed files with 366 additions and 0 deletions

21
Dockerfile Executable file
View File

@@ -0,0 +1,21 @@
FROM python:3.12-bullseye
ENV COMPANYID=1
ENV PYTHONFAULTHANDLER=1
ENV PYTHONUNBUFFERED=1
RUN mkdir -p /app
COPY requirements.txt /app
WORKDIR /app
RUN pip3 install -r requirements.txt
EXPOSE 8003
COPY . /app