ifms-conselho/Dockerfile

12 lines
149 B
Docker
Raw Normal View History

2023-03-08 18:20:47 +00:00
FROM python:3
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
CMD [ "python", "./connect.py" ]