optimization

This commit is contained in:
José Henrique Ivanchechen 2020-01-29 17:22:43 -03:00
parent 17bc70407e
commit 53035740e4

View File

@ -7,14 +7,11 @@ RUN apt-get install python-pip -y
RUN apt-get install python3 -y
RUN apt-get install python3-pip -y
# run two quick checks
RUN python2
RUN python3
WORKDIR /calculator
COPY * ./
RUN pip install .
# doesn't work
# RUN pip3 install .
ENTRYPOINT [ "python", "my_first_calculator.py" ]
ENTRYPOINT ["python", "my_first_calculator.py"]