Coder Social home page Coder Social logo

Comments (4)

omrihar avatar omrihar commented on May 5, 2024 2

What I'm doing is the following (not ideal, but what @tiangolo recommended doing):

  1. Add the requirements to backend.dockerfile as a line RUN pip install package (after most of the lines in the docker file so I can use the caching mechanism of docker).
  2. Optionally add the dependency to the tests.dockerfile file as well (if you need it for the testing).
  3. Add to the Pipfile so I get code completion from the editor when developing outside of the container.

To refresh the container I usually run docker-compose up -d --build backend - this just rebuilds the backend and ups it once it's done. I actually have a bunch of docker-compose commands in a Makefile so I can simply run make refresh-backend and don't forget it.

from full-stack-fastapi-postgresql.

 avatar commented on May 5, 2024 1

Docker-compose build would install the new dependencies. And what I'm doing is to pip install my the requirements.txt file via the RUN command in the backend.dockerfile.

from full-stack-fastapi-postgresql.

McSlow avatar McSlow commented on May 5, 2024

There's a pipfile with all the dependencies, what is it used for at the moment?

from full-stack-fastapi-postgresql.

tiangolo avatar tiangolo commented on May 5, 2024

Thanks for the help here everyone! 👏 🙇

Thanks for reporting back and closing the issue 👍


I'm not really happy with the way packages are handled. The Pipfile is only for the local development environment. Using a Pipfile or requirements.txt doesn't play well with the Docker cache, so that's not ideal either. I still don't have a "favorite" solution for this...

from full-stack-fastapi-postgresql.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.