Skip to content

Commit

Permalink
Fix non-working Dockerfile by adding sudo where necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
yutotakano committed Nov 25, 2024
1 parent 00958d6 commit 04ff5c1
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 @@ -8,7 +8,7 @@ COPY compiled.css /var/www/html/compiled.css
RUN rm /var/www/html/index.php
RUN rm /var/www/html/test.html

RUN mkdir /etc/aoc
RUN chown -R www-data:www-data /etc/aoc
RUN sudo mkdir -p /etc/aoc
RUN sudo chown -R www-data:www-data /etc/aoc

EXPOSE 8080

0 comments on commit 04ff5c1

Please sign in to comment.