File size: 377 Bytes
5d1bbbf 92e2bfb a5a9821 92e2bfb 5d1bbbf 92e2bfb 5d1bbbf 92e2bfb 5d1bbbf 92e2bfb 5d1bbbf 92e2bfb 5d1bbbf 92e2bfb 5d1bbbf 92e2bfb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM python:3.9-slim
RUN apt-get update && \
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
apt-get install -y nodejs npm && \
apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN npm install -g http-server
COPY . .
EXPOSE 8501 8080
CMD ["python", "run.py"] |