Pytailwindcss doesn't work with Docker
Setting pytailwindcss in the requirements.txt file causes error after tailwindcss command is ran from bash inside the container.
Dockerfile:
COPY requirements.txt /tmp/pip-tmp/
RUN pip --disable-pip-version-check install -r /tmp/pip-tmp/requirements.txt &&
rm -rf /tmp/pip-tmp
Traceback (most recent call last):
File "/usr/local/bin/tailwindcss", line 8, in
If you build your container and run pip install pytailwindcss from the bash and run tailwindcss then it works. But not from the requirements.txt
Have you found a solution to that?
I'm running this with fastAPI and is running totally fine inside the docker container
`FROM tiangolo/uvicorn-gunicorn-fastapi:python3.10
WORKDIR /proj
COPY . . COPY ./requirements.* .
RUN pip install --no-cache-dir --upgrade -r requirements.dev.txt`
The only problem is that even if i update the the code I have to see how to trigger the updates to the scream