interdimensionalcable/Dockerfile

12 lines
158 B
Docker
Raw Permalink Normal View History

2022-07-31 14:44:25 -04:00
FROM python:buster
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
copy . .
CMD ["python", "./main.py"]