Files
bozo-backend/Dockerfile
2023-06-04 11:48:19 +02:00

8 lines
185 B
Docker

FROM alpine
RUN apk add git python3 py3-pip
RUN git clone https://git.chauvet.pro/bozogang/bozo-backend app
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["python3", "main.py"]