lol / Dockerfile
kim0arka's picture
Rename Docherfile to Dockerfile
47816f2 verified
FROM python:3.9
WORKDIR /code
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "main.py"]