diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0cba438 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM ubuntu +RUN apt-get update +# For Sql-client +RUN apt-get install mysql-client -y + +# For python and related frameworks + +RUN apt-get install python3 -y +RUN apt-get install python3-flask -y +RUN apt-get install python3-pymysql -y +RUN apt-get install python3-boto3 -y + +COPY . . +EXPOSE 80 +# for running application +CMD ["python3","EmpApp.py"] +~