14 lines
No EOL
333 B
Text
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"] |