add Dockerfile

This commit is contained in:
José Henrique Ivanchechen 2020-01-29 16:50:23 -03:00
parent a7aabeaf49
commit 17bc70407e
2 changed files with 22 additions and 0 deletions

2
.dockerignore Normal file
View File

@ -0,0 +1,2 @@
.git/
Dockerfile

20
Dockerfile Normal file
View File

@ -0,0 +1,20 @@
FROM ubuntu:latest
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install python2.7 -y
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" ]