Skip to content

Commit

Permalink
fixing docker error
Browse files Browse the repository at this point in the history
  • Loading branch information
callahantiff committed Mar 12, 2023
1 parent a5de26a commit 9b42ca3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
############################################
## MULTI-STAGE CONTAINER CONFIGURATION ##
FROM python:3.6.2
RUN sudo apt-get update && apt-get install -y \
RUN apt-get update && apt-get install -y \
apt-transport-https \
software-properties-common \
unzip \
curl
RUN wget -O- https://apt.corretto.aws/corretto.key | apt-key add - && \
add-apt-repository 'deb https://apt.corretto.aws stable main' && \
sudo apt-get update && \
sudo apt-get install -y java-1.8.0-amazon-corretto-jdk
apt-get update && \
apt-get install -y java-1.8.0-amazon-corretto-jdk


############################################
Expand Down

0 comments on commit 9b42ca3

Please sign in to comment.