Commit f6efac8b authored by nimrod's avatar nimrod
Browse files

Some scaffolding.

parent 330c8c2d
Loading
Loading
Loading
Loading

.dockerignore

0 → 100644
+3 −0
Original line number Diff line number Diff line
*.md
.git*
LICENSE.txt

Dockerfile

0 → 100644
+6 −0
Original line number Diff line number Diff line
FROM python:3.8
WORKDIR /opt/waldorf
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY waldorf ./waldorf
USER nobody

requirements.txt

0 → 100644
+2 −0
Original line number Diff line number Diff line
flask>=1.1
celery[librabbitmq]>=4.4

waldorf/__init__.py

0 → 100644
+0 −0

Empty file added.