9 lines
277 B
Docker
9 lines
277 B
Docker
FROM python:3.6
|
|
RUN apt-get -y update && apt-get -y upgrade && apt-get install git && apt-get install curl
|
|
RUN git clone https://Kanris:902810Ok@gitlab.informatics.ru/2020-2021/online/s101/group-02/access_controller.git
|
|
EXPOSE 8000
|
|
COPY start.sh /var/
|
|
CMD bash /var/start.sh
|
|
|
|
|