diff --git a/webservice/Dockerfile b/webservice/Dockerfile index e50b2c7..19bf639 100644 --- a/webservice/Dockerfile +++ b/webservice/Dockerfile @@ -3,12 +3,12 @@ FROM python:3.10-alpine WORKDIR /srv/flask_app RUN apk add nginx build-base libffi-dev curl uwsgi -COPY ./requirements.txt /srv/flask_app/ +COPY webservice/requirements.txt /srv/flask_app/ RUN pip install -r requirements.txt --src /usr/local/src --no-warn-script-location -COPY . /srv/flask_app -COPY deploy/nginx.conf /etc/nginx +COPY webservice /srv/flask_app +COPY webservice/deploy/nginx.conf /etc/nginx RUN chmod +x ./deploy/start.sh RUN chmod +x ./deploy/healthcheck.sh