docker-actins-test/Dockerfile

7 lines
97 B
Docker

FROM python:3.10-alpine
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "main.py"]