Skip to content

Commit 9317b9f

Browse files
committed
start moving files into src and test folders
1 parent 3b550ad commit 9317b9f

File tree

9 files changed

+8
-0
lines changed

9 files changed

+8
-0
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ RUN apk del --no-cache .build-deps
1111
RUN mkdir -p /code
1212
COPY *.py /code/
1313
WORKDIR /code
14+
RUN pip install .
1415
ENV FLASK_APP=flask_app.py FLASK_DEBUG=1 PYTHONUNBUFFERED=1
1516
CMD flask run --host=0.0.0.0 --port=80
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/setup.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from setuptools import setup
2+
3+
setup(
4+
name='procurement',
5+
version='0.1',
6+
packages=['allocation'],
7+
)
File renamed without changes.

0 commit comments

Comments
 (0)