Skip to content
Snippets Groups Projects
Commit 10c5346f authored by Mart van Santen's avatar Mart van Santen
Browse files

Forgotten file...

parent 6681e850
No related branches found
No related tags found
2 merge requests!68Merge loginpanel into main and release 0.5.0,!57Resolve "Add login panel CI/CD to create (docker) image"
Pipeline #9845 failed with stages
in 45 seconds
FROM python:3.9-alpine
RUN apk add gcc libc-dev libffi-dev g++
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5000
ENV FLASK_RUN_HOST=0.0.0.0
ENV FLASK_RUN_PORT=5000
ENV HYDRA_ADMIN_URL=http://localhost:4445
ENV KRATOS_PUBLIC_URL=http://localhost:8080
ENV KRATOS_ADMIN_URL=http://localhost:8000
ENV DATABASE_URL="postgresql://stackspin:stackspin@localhost/stackspin"
ENV APP_SETTINGS="config.DevelopmentConfig"
CMD [ "flask", "run" ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment