sharenet/frontend/Dockerfile.test-node
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

13 lines
No EOL
311 B
Text

# Node.js testing environment for CI/CD
FROM node:20-slim
# Install additional tools needed for testing
RUN apt-get update && apt-get install -y \
curl \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /workspace/frontend
# Keep container running for testing
CMD ["sleep", "infinity"]