q1/Dockerfile

11 lines
154 B
Docker
Raw Normal View History

2022-08-12 17:04:31 -04:00
FROM python:3
2022-08-12 15:23:42 -04:00
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./main.py" ]