diff --git a/showservices/Dockerfile b/showservices/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..576d49b0a8e625e8deb7425ce9265cf2fcf1e310 --- /dev/null +++ b/showservices/Dockerfile @@ -0,0 +1,8 @@ +FROM python:3.8 +WORKDIR / +COPY requirement.txt +RUN pip install -r requirements.txt +COPY ./movies.py/ +COPY ./database /database +EXPOSE 5001 +CMD["python3", "./movies.py"]