diff --git a/showservices/Dockerfile b/showservices/Dockerfile
index 955254557db40073c761411082f565695be12f3e..fc2be5e54c4089df66c2fcc056094a490e5c5956 100644
--- a/showservices/Dockerfile
+++ b/showservices/Dockerfile
@@ -1,8 +1,9 @@
-FROM python:3.8
+FROM python:3.8-alpine
 WORKDIR /
-COPY requirement.txt
-RUN pip install -r requirements.txt
-COPY ./movies.py /
+COPY stservice/requirements.txt .
+RUN pip3 install -r requirements.txt
+COPY ./showtimes.py /
 COPY ./database /database
-EXPOSE 5001 
-CMD["python3", "./movies.py"]
+EXPOSE 5002
+CMD python showtimes.py
+