Open rochacbruno opened 7 years ago
Olá @rochacbruno! I can work on this. I was thinking of switching to the official python alpine image for this, what do you think?
Hi @rochacbruno, is that referring docker for development environment or a docker image of quokka_ng for end user? 🙂
@dhoeric end-user
the use case is, instead of preparing a Python3 environment and install quokka
you will be able to do:
$ docker run -d -v $PWD:/work quokka init MyProject --theme=bootstrap3
Creating a project in $PWD/myproject...
That volume mount is needed to allow quokka to copy project-template to where container run.
then user will be able to:
$ docker run -d -v $PWD:/work -p 5000:5000 quokka runserver
Running on localhost:5000
So it can useful even to deploy quokka.
Update docker image