diff --git a/api-server/Dockerfile b/api-server/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..9d8e06d9d3258f4c78c13c5531bf6be75fb7b75d --- /dev/null +++ b/api-server/Dockerfile @@ -0,0 +1,9 @@ +FROM tiangolo/uvicorn-gunicorn:python3.8 + +LABEL maintainer="Christian Böttcher <c.boettcher@fz-juelich.de>" + +RUN apt update && apt upgrade -y + +RUN pip install --no-cache-dir fastapi + +COPY ./api-server.py /app/main.py \ No newline at end of file