initial commit

This commit is contained in:
D. Scott Boggs 2025-05-27 14:11:33 -04:00
commit c58323c588
9 changed files with 73 additions and 0 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM python:3.13-alpine
EXPOSE 1312
WORKDIR /app
COPY ./pyproject.toml ./wsgi-conf.py /app/
RUN pip install --no-cache-dir --upgrade .
COPY ./fnb_redirecter/ /app/fnb_redirecter
RUN pip install --no-cache-dir --upgrade .
CMD ["python", "-m", "fnb_redirecter"]