Skip to content

Commit ae4d75a

Browse files
committed
Update container to enable web console
1 parent 4c88279 commit ae4d75a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
FROM python:3-alpine
33
ENV PYTHONUNBUFFERED=1
44
WORKDIR /usr/src/app
5-
COPY requirements.txt /usr/src/app/
5+
COPY ./web-ui/requirements.txt /usr/src/app/
66
RUN pip install -U -r requirements.txt
7-
COPY ./web /usr/src/app/
7+
COPY ./web-ui /usr/src/app/
88
COPY ./entrypoint.sh /
99
ENTRYPOINT ["/entrypoint.sh"]

src/web-ui/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
flask
2+
gunicorn
23
requests

0 commit comments

Comments
 (0)