Skip to content

Commit a0bfe09

Browse files
committed
Typo and more
1 parent bb89b65 commit a0bfe09

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

azure-webapp-claims/.dockerignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
__pycache__/
2+
Dockerfile
3+
docker-compose.yml

azure-webapp-claims/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
FROM python:3.11
22

3-
RUN pip install -U pip shiny gunicorn
3+
WORKDIR /opt/shiny
44

5-
COPY app.py /opt/shiny/app.py
5+
COPY . .
6+
7+
RUN pip install -r requirements.txt
68

79
EXPOSE 3333
810

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
shiny
2-
guvicorn
2+
gunicorn

0 commit comments

Comments
 (0)