diff --git a/Dockerfile b/Dockerfile index 04f65be..63f2cb2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,11 +4,10 @@ RUN apt-get update && apt-get install -y build-essential COPY requirements.txt . RUN pip install uwsgi RUN pip install -r requirements.txt + FROM python:3.8-slim-buster COPY --from=builder /opt/venv /opt/venv ENV PATH="/opt/venv/bin:$PATH" WORKDIR /srv/ -COPY simple_sample . -COPY run.py . -COPY config.cfg . +COPY . .