Product-Manager/z2/product-manager-backend/Dockerfile

9 lines
219 B
Docker
Raw Permalink Normal View History

2022-04-25 12:07:08 +00:00
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