2023-06-04 05:48:19 -04:00
|
|
|
FROM alpine
|
|
|
|
|
|
|
|
RUN apk add git python3 py3-pip
|
|
|
|
RUN git clone https://git.chauvet.pro/bozogang/bozo-backend app
|
2023-06-04 07:05:35 -04:00
|
|
|
WORKDIR app
|
|
|
|
RUN git clone https://github.com/Sofiandsv/htmlbase-zeolak_esports templates
|
2023-06-04 05:48:19 -04:00
|
|
|
RUN pip install -r requirements.txt
|
2023-06-04 07:05:35 -04:00
|
|
|
|
2023-06-04 05:48:19 -04:00
|
|
|
CMD ["python3", "main.py"]
|