test-img/Dockerfile

10 lines
239 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-10-01 09:37:29 -03:00
##########