Do not require timestamp_end, initialize db
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-01-03 00:13:26 +01:00
parent 0f2f0d281e
commit 9d142126b1
5 changed files with 56 additions and 4 deletions

View File

@ -12,6 +12,7 @@ RUN git clone https://git.kucharczyk.xyz/lukas/timetracker.git /home/timetracker
WORKDIR /home/timetracker/app
RUN chown -R timetracker /home/timetracker/app
RUN poetry install
RUN make initialize
EXPOSE 8000
USER timetracker
CMD [ "python3", "src/web/manage.py", "runserver", "0.0.0.0:8000" ]