Product-Manager/z3/product-manager-backend/Dockerfile
2022-05-22 17:33:07 +05:30

10 lines
262 B
Docker

FROM python:3.9
ENV PYTHONUNBUFFERED 1
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install -r requirements.txt
COPY . /app
RUN chmod +x 'scripts/backend_entrypoint.sh'
CMD run backend_entrypoint.sh
CMD sh /app/scripts/backend_entrypoint.sh