Issues information
- OS:
- databases: POSTGRESQL
- Programming language and version: Python 3.6
When clickling on the deploy button of my application, I get a 403 response. As can be seen in the screenshot.
My cluster is running properly, the application is in a ready state and Qovery has all the rights to the AWS account.
FROM python:3.6.15
ENV PYTHONUNBUFFERED 1
# WORKDIR /code
RUN pip3 install --upgrade pip
RUN pip3 install pipenv
COPY Pipfile Pipfile.lock ./
RUN pipenv install --system --deploy
COPY . ./
EXPOSE 8000
# Remove "pipenv run", add the bind argument
# (No need to repeat `command:` in `docker-compose.yml`)
ENTRYPOINT ["./entrypoint.sh"]
Thank you