13 lines
No EOL
311 B
Text
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"] |