Merge branch 'main' into feature/umfrage
This commit is contained in:
commit
c23f7bd333
2 changed files with 16 additions and 3 deletions
|
@ -1,12 +1,13 @@
|
||||||
FROM python
|
FROM python
|
||||||
|
|
||||||
WORKDIR /opt/demo/
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN apt-get -y update && apt-get -y upgrade
|
||||||
|
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
|
|
||||||
RUN apt-get -y update && apt-get -y upgrade
|
|
||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
COPY /src .
|
COPY /src .
|
||||||
|
|
||||||
CMD [ "python", "main.py" ]
|
CMD [ "python", "app.py" ]
|
||||||
|
|
|
@ -8,3 +8,15 @@ services:
|
||||||
dockerfile: Dockerfile.prod
|
dockerfile: Dockerfile.prod
|
||||||
ports:
|
ports:
|
||||||
- 8877:80
|
- 8877:80
|
||||||
|
backend-prod:
|
||||||
|
container_name: backend_bt
|
||||||
|
build:
|
||||||
|
context: ./backend
|
||||||
|
dockerfile: Dockerfile.prod
|
||||||
|
ports:
|
||||||
|
- 5000:5000
|
||||||
|
environment:
|
||||||
|
DEBUG: "no"
|
||||||
|
PORT: 5000
|
||||||
|
HOST: "0.0.0.0"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue