mirror of
https://github.com/Dannecron/netology-devops-gitlab.git
synced 2025-12-25 23:32:34 +03:00
13 lines
221 B
Docker
13 lines
221 B
Docker
FROM centos:7
|
|
|
|
RUN yum install -y python3 curl
|
|
COPY src/requirements.txt /tmp/requirements.txt
|
|
|
|
RUN pip3 install -r /tmp/requirements.txt
|
|
|
|
COPY src/ /python_api/
|
|
|
|
EXPOSE 5290
|
|
|
|
CMD ["python3", "/python_api/python-api.py"]
|