Skip to content

Commit

Permalink
Docker examples - Dockerfile updated
Browse files Browse the repository at this point in the history
  • Loading branch information
devdattakulkarni committed May 10, 2024
1 parent aba10da commit 6820235
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Containers/Docker-examples/hello-world-ubuntu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM ubuntu:14.04
RUN apt-get update -y \
&& apt-get install -y python-setuptools python-pip
&& apt-get install -y python-setuptools python3-pip
ADD requirements.txt /src/requirements.txt
RUN cd /src; pip install -r requirements.txt
ADD . /src
EXPOSE 5000
CMD ["python", "/src/application.py"]
CMD ["python3", "/src/application.py"]

0 comments on commit 6820235

Please sign in to comment.