dakrauth / django-swingtime

📆 Event and occurrence scheduling application for Django
https://dakrauth.github.io/django-swingtime/
MIT License
319 stars 99 forks source link

Fixed Dockerfile #30

Closed ianco closed 6 years ago

ianco commented 6 years ago

I was getting an error when building the Dockerfile (can't pip install ...) so I re-organized the commands a bit ...

dakrauth commented 6 years ago

I think the real issue is with the requirements file. Either we just use the base.txt file, or remove the last line in the dev.txt, which is what is actually causing the docker file to not build.

ianco commented 6 years ago

Hi David, thanks for the quick reply! Sure enough, removing the "-e ." line from dev.txt solves the problem, as does using "base.txt" instead of dev. Probably makes sense to just use "base.txt" for the Dockerfile ...