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'
|
2022-05-22 12:03:07 +00:00
|
|
|
CMD run backend_entrypoint.sh
|
|
|
|
CMD sh /app/scripts/backend_entrypoint.sh
|