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 / WORKDIR /
COPY requirement.txt COPY stservice/requirements.txt .
RUN pip install -r requirements.txt RUN pip3 install -r requirements.txt
COPY ./movies.py / COPY ./showtimes.py /
COPY ./database /database COPY ./database /database
EXPOSE 5001 EXPOSE 5002
CMD["python3", "./movies.py"] 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