Skip to content
Snippets Groups Projects
Commit d4d15633 authored by Diccion, Kaeren C (UG - Computer Science)'s avatar Diccion, Kaeren C (UG - Computer Science)
Browse files

Update Dockerfile

parent 4f9b9097
No related branches found
No related tags found
No related merge requests found
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
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