Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]
~