diff --git a/Dockerfile b/Dockerfile index e1f2287..202d7c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,5 +16,8 @@ COPY . /app # Install any needed dependencies specified in requirements.txt RUN pip install --no-cache-dir -r /app/requirements.txt -# Start Anonimization -CMD ["python3", "/app/app.py"] +#Start Container +RUN chmod +x /app/start.sh +CMD ["/app/start.sh"] + +WORKDIR /app diff --git a/start.sh b/start.sh new file mode 100644 index 0000000..0e383a2 --- /dev/null +++ b/start.sh @@ -0,0 +1 @@ +python3 /app/app.py \ No newline at end of file