We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb89b65 commit a0bfe09Copy full SHA for a0bfe09
azure-webapp-claims/.dockerignore
@@ -0,0 +1,3 @@
1
+__pycache__/
2
+Dockerfile
3
+docker-compose.yml
azure-webapp-claims/Dockerfile
@@ -1,8 +1,10 @@
FROM python:3.11
-RUN pip install -U pip shiny gunicorn
+WORKDIR /opt/shiny
4
5
-COPY app.py /opt/shiny/app.py
+COPY . .
6
+
7
+RUN pip install -r requirements.txt
8
9
EXPOSE 3333
10
azure-webapp-claims/requirements.txt
@@ -1,2 +1,2 @@
shiny
-guvicorn
+gunicorn
0 commit comments