Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
So that apt-get auto yeses install
  • Loading branch information
valguss authored Oct 9, 2023
1 parent 088a7ea commit be37b6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installer/templates/skywire-docker/nginx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY src/template.conf /etc/nginx/conf.d/template.conf
VOLUME /var/www/html

#create SSL certificates
RUN apt-get update; apt-get install openssl
RUN apt-get update; apt-get -y install openssl
RUN openssl genrsa -out /etc/ssl/site.key 2048
RUN openssl req -x509 -newkey rsa:2048 -keyout /etc/ssl/site.key -out /etc/ssl/site.crt -days 365 -nodes -subj '/CN={{ hostname }}'

Expand Down

0 comments on commit be37b6f

Please sign in to comment.