sharenet/backend/Dockerfile.test-rust
continuist 9d37a795a0
Some checks failed
CI/CD Pipeline (Fully Isolated DinD) / Run Tests (DinD) (push) Failing after 35s
CI/CD Pipeline (Fully Isolated DinD) / Build and Push Docker Images (DinD) (push) Has been skipped
CI/CD Pipeline (Fully Isolated DinD) / Deploy to Production (push) Has been skipped
Use Dockerfiles to perform tests
2025-07-05 13:15:02 -04:00

14 lines
No EOL
333 B
Text

# Rust testing environment for CI/CD
FROM rust:1.75-slim
# Install additional tools needed for testing
RUN apt-get update && apt-get install -y \
postgresql-client \
curl \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /workspace/backend
# Keep container running for testing
CMD ["sleep", "infinity"]