-
Notifications
You must be signed in to change notification settings - Fork 3
Problem installing with Docker using Dockerfile. #6
Copy link
Copy link
Open
Description
FROM python:3.6
RUN mkdir -p /usr/src/app
COPY . /usr/src/app
WORKDIR /usr/src/app
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install sqlalchemy-seeder
#Run Microservice
EXPOSE 8080
CMD ["python", "main.py"]
After build container, when I run:
Traceback (most recent call last):
File "manage.py", line 4, in <module>
from sqlalchemyseeder import ResolvingSeeder
ModuleNotFoundError: No module named 'sqlalchemyseeder'
Traceback (most recent call last):
File "manage.py", line 4, in <module>
from sqlalchemyseeder import ResolvingSeeder
ModuleNotFoundError: No module named 'sqlalchemyseeder'
What's is the problem, why doesn't found the module after install?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels