Skip to content
Snippets Groups Projects
Commit c40e41b1 authored by Sastry, Nishanth Prof (Comp Sci & Elec Eng)'s avatar Sastry, Nishanth Prof (Comp Sci & Elec Eng)
Browse files

Dockerize showtimes service

parent 075f04ac
No related branches found
No related tags found
No related merge requests found
FROM python:3.8-alpine
WORKDIR /
COPY stservice/requirements.txt .
RUN pip3 install -r requirements.txt
COPY ./showtimes.py /
COPY ./database /database
EXPOSE 5002
CMD python showtimes.py
Flask==0.10.1
requests==2.25.1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment