Product-Manager/product-manager-backend/Dockerfile
2022-04-25 17:37:08 +05:30

9 lines
219 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