Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COPY --chown=pi:pi easyinstall.sh .
COPY --chown=pi:pi cpp cpp
COPY --chown=pi:pi doc doc
COPY --chown=pi:pi proto proto
RUN ./easyinstall.sh --run_choice=15 --cores=`nproc`
RUN sudo ./easyinstall.sh --run_choice=15 --cores=`nproc`

FROM debian:bullseye-slim AS runner
USER root
Expand Down
6 changes: 3 additions & 3 deletions docker/web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ COPY --chown=pi:pi python/web python/web
COPY --chown=pi:pi python/common python/common

# Install standalone PiSCSI Web UI
RUN ./easyinstall.sh --run_choice=12 \
RUN sudo ./easyinstall.sh --run_choice=12 \
&& sudo apt-get remove build-essential --yes \
&& sudo apt autoremove -y \
&& sudo apt-get clean \
&& sudo rm -rf /var/lib/apt/lists/*

# Enable web UI authentication
RUN ./easyinstall.sh --run_choice=14
RUN sudo ./easyinstall.sh --run_choice=14

# Setup wired network bridge
RUN ./easyinstall.sh --run_choice=5 --headless
RUN sudo ./easyinstall.sh --run_choice=5 --headless

USER root
WORKDIR /home/pi
Expand Down
Loading