Buildly-Marketplace / sales_forecast_service

Predict sales based on collected data.
GNU General Public License v3.0
1 stars 6 forks source link

Add Dockerfile/docker-compose to containerize service #1

Open msradam opened 5 years ago

msradam commented 5 years ago

Issue

Currently the microservice is not containerized and those who wish to run it must use their existing Python installation or a virtual environment to install the requirements, which may conflict with their existing libraries.

Solution

Write a Dockerfile (preferably with Python 3.7 Alpine) and an accompanying docker-compose.yml that will run the Flask app.

References

Docker Compose with Flask Apps https://runnable.com/docker/python/docker-compose-with-flask-apps

dennislwm commented 4 years ago

I've performed several docker-compose.yml and Dockerfile files for side python projects (so far none with flask apps). Can I take this one?