Skip to content

Commit

Permalink
Fixed dockerfile to accept apt-get install by default
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioRivis authored Sep 14, 2022
1 parent 4206077 commit 84bd976
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM openjdk:11
RUN apt-get update

# Install python 3
RUN apt-get install python3 wget unzip dpkg
RUN apt-get -y install python3 wget unzip dpkg

# Install dotnet sdk 6
RUN wget https://packages.microsoft.com/config/ubuntu/21.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
Expand All @@ -24,4 +24,4 @@ COPY docker-mission.yml /usr/voyager/mission.yml

WORKDIR /usr/voyager

ENTRYPOINT ["/usr/voyager/voyager.sh"]
ENTRYPOINT ["/usr/voyager/voyager.sh"]

0 comments on commit 84bd976

Please sign in to comment.