We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c88279 commit ae4d75aCopy full SHA for ae4d75a
src/Dockerfile
@@ -2,8 +2,8 @@
2
FROM python:3-alpine
3
ENV PYTHONUNBUFFERED=1
4
WORKDIR /usr/src/app
5
-COPY requirements.txt /usr/src/app/
+COPY ./web-ui/requirements.txt /usr/src/app/
6
RUN pip install -U -r requirements.txt
7
-COPY ./web /usr/src/app/
+COPY ./web-ui /usr/src/app/
8
COPY ./entrypoint.sh /
9
ENTRYPOINT ["/entrypoint.sh"]
src/web-ui/requirements.txt
@@ -1,2 +1,3 @@
1
flask
+gunicorn
requests
0 commit comments