diff --git a/Dockerfile b/Dockerfile index 6a3e329..a1b72b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,14 @@ FROM python:slim WORKDIR /usr/src/app -COPY . . RUN apt-get update -y RUN apt-get install gcc -y +COPY requirements.txt . RUN pip3 install -r requirements.txt EXPOSE 42010 +COPY . . ENTRYPOINT ./maloja start