Improved dev loop cycle

This commit is contained in:
James Ketr 2025-04-01 14:04:00 -07:00
parent b1d6508a49
commit 93f25bd919

View File

@ -283,7 +283,10 @@ COPY --from=ze-monitor /opt/ze-monitor/build/ze-monitor-*deb /opt/
RUN dpkg -i /opt/ze-monitor-*deb && rm /opt/ze-monitor-*deb RUN dpkg -i /opt/ze-monitor-*deb && rm /opt/ze-monitor-*deb
RUN usermod -aG ze-monitor root RUN usermod -aG ze-monitor root
COPY /src/ /opt/airc/src/ # While running in development mode via bind mounts, don't copy
# the source or follow on containers will always rebuild whenever
# the source changes.
#COPY /src/ /opt/airc/src/
SHELL [ "/bin/bash", "-c" ] SHELL [ "/bin/bash", "-c" ]