diff options
Diffstat (limited to 'mock-cds/Dockerfile')
-rw-r--r-- | mock-cds/Dockerfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mock-cds/Dockerfile b/mock-cds/Dockerfile new file mode 100644 index 0000000..4a396bb --- /dev/null +++ b/mock-cds/Dockerfile @@ -0,0 +1,17 @@ +FROM python:3.7.8-alpine + +COPY . /app +WORKDIR /app + +# GCC for Alpine Linux in Docker +RUN apk add build-base + + +# Dependencies +RUN pip install pipenv && \ + pipenv requirements > requirements.txt && \ + pip install -r requirements.txt + + +ENTRYPOINT ["python"] +CMD ["app/app.py"]
\ No newline at end of file |