Skip to content

Commit e0b0e95

Browse files
committed
Merge branch 'dev' of github.com:Code4GovTech/DMP-CMS-Backend-API into fix/multi-repo
1 parent d3f5186 commit e0b0e95

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ COPY . /app
1111
RUN pip install --no-cache-dir -r requirements.txt
1212

1313
# Make port 5000 available to the world outside this container
14-
EXPOSE 7000
14+
EXPOSE 5000
1515

1616
# Define environment variable
1717
ENV FLASK_APP=wsgi.py
1818
ENV FLASK_RUN_HOST=0.0.0.0
1919

2020
# Run the application
21-
CMD ["flask", "run", "--host=0.0.0.0", "--port=7000"]
21+
CMD ["flask", "run"]
2222

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
web:
55
build: .
66
ports:
7-
- "7000:7000"
7+
- "5000:5000"
88
environment:
99
FLASK_ENV: ${FLASK_ENV:-development}
1010
SUPABASE_URL: ${SUPABASE_URL}

0 commit comments

Comments
 (0)