test-img/Dockerfile

10 lines
241 B
Text
Raw Normal View History

2025-09-16 13:34:36 -03:00
FROM python:3
RUN apt-get update && apt-get install -y python3-pip
RUN pip3 install --upgrade pip
WORKDIR /app
COPY requirements.txt .
COPY /app/app.py /app
RUN pip3 install -r requirements.txt
COPY . .
CMD ["python3", "app.py"]
2025-09-26 14:40:12 -03:00
############