Skip to content

Commit

Permalink
Merge pull request #57 from aws-samples/issue-56
Browse files Browse the repository at this point in the history
Updating multiple Dockerfile file to use the ubuntu:20.04 container i…
  • Loading branch information
MitchyBAwesome authored Apr 26, 2022
2 parents 90f2104 + 9a54071 commit f19a5a4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion workshop-1/app/like-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:latest
FROM ubuntu:20.04
RUN echo Updating existing packages, installing and upgrading python and pip.
RUN apt-get update -y
RUN apt-get install -y python3-pip python-dev build-essential
Expand Down
2 changes: 1 addition & 1 deletion workshop-1/app/monolith-service/Dockerfile.draft
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:latest
FROM ubuntu:20.04
RUN apt-get update -y
RUN apt-get install -y python3-pip python-dev build-essential
RUN pip3 install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion workshop-2/app/like-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:latest
FROM ubuntu:20.04
RUN echo Updating existing packages, installing and upgrading python and pip.
RUN apt-get update -y
RUN apt-get install -y python-pip python-dev build-essential
Expand Down
2 changes: 1 addition & 1 deletion workshop-2/app/monolith-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:latest
FROM ubuntu:20.04
RUN echo Updating existing packages, installing and upgrading python and pip.
RUN apt-get update -y
RUN apt-get install -y python-pip python-dev build-essential
Expand Down
2 changes: 1 addition & 1 deletion workshop-3/app/like-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:latest
FROM ubuntu:20.04
RUN echo Updating existing packages, installing and upgrading python and pip.
RUN apt-get update -y
RUN apt-get install -y python3-pip python-dev build-essential
Expand Down
2 changes: 1 addition & 1 deletion workshop-3/app/monolith-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:latest
FROM ubuntu:20.04
RUN echo Updating existing packages, installing and upgrading python and pip.
RUN apt-get update -y
RUN apt-get install -y python3-pip python-dev build-essential
Expand Down

0 comments on commit f19a5a4

Please sign in to comment.