[59159] Removed watchexec-cli from Dockerfile for development

Reason: Package mirror TLS problems
This commit is contained in:
Andreas Pfohl
2024-11-18 08:47:17 +01:00
parent 355c0ad68b
commit 7a6430cf70
-11
View File
@@ -34,17 +34,6 @@ RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesourc
RUN apt-get update
RUN apt-get install -y nodejs
# Install watchexec for continuous test execution.
# Usage:
# - Add the following line to your ~/.bashrc ("dcrw" stands for "Docker Compose Rspec Watch"):
# dcrw() { docker compose exec backend-test watchexec --exts rb,erb -- bin/rspec --order defined --format documentation --fail-fast $1; }
# - and then use it like this:
# dcrw <path-to-your-spec-file>
RUN curl -fsSL https://apt.cli.rs/pubkey.asc | tee -a /usr/share/keyrings/rust-tools.asc
RUN curl -fsSL https://apt.cli.rs/rust-tools.list | tee /etc/apt/sources.list.d/rust-tools.list
RUN apt update
RUN apt install watchexec-cli
COPY ./docker/dev/backend/scripts/setup /usr/sbin/setup
COPY ./docker/dev/backend/scripts/setup-bim /usr/sbin/setup-bim
COPY ./docker/dev/backend/scripts/run-app /usr/sbin/run-app