Skip to content

Commit 656162f

Browse files
committed
bump versions, remove 'version' tag in docker compose (version label deprecated in docker compose), etc.
1 parent e7a12e2 commit 656162f

File tree

6 files changed

+1776
-1681
lines changed

6 files changed

+1776
-1681
lines changed

client/yarn.lock

Lines changed: 1768 additions & 1673 deletions
Large diffs are not rendered by default.

docker-compose.selenium.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3'
2-
31
services:
42
server:
53
build:

docker-compose.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
version: '3'
2-
31
services:
42
server:
53
build:
64
context: ./server
75
dockerfile: ./Dockerfile
86
args:
97
BUILD_DEVELOPMENT: ${BUILD_DEVELOPMENT}
8+
command: bash -c "python -m debugpy --listen 0.0.0.0:5678 app.py"
109
ports:
1110
- "3001:3001"
1211
- "5678:5678"

selenium_tests/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM selenium/standalone-chrome-debug
22

3+
ENV PYDEVD_DISABLE_FILE_VALIDATION 1
34
ENV PYTHONUNBUFFERED 1
45
USER root
56
RUN apt-get update && apt-get install -yq python3.8 python3-pip

server/Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
FROM python:3.11-slim
1+
FROM --platform=linux/amd64 python:3.11
22

33
ARG BUILD_DEVELOPMENT="False"
44

5+
ENV PYDEVD_DISABLE_FILE_VALIDATION 1
56
LABEL version="1.1.0"
67
LABEL description="Demo of a Medicare claims data sample app"
78

@@ -18,8 +19,9 @@ RUN if [ "$BUILD_DEVELOPMENT" = "True" ]; then \
1819
pip install cms-bluebutton-sdk; \
1920
fi
2021

22+
RUN pipenv lock
2123
RUN pipenv install --system --deploy --ignore-pipfile
2224

23-
EXPOSE 3001
25+
# EXPOSE 3001
2426

25-
CMD ["sh", "-c", "python -m debugpy --listen 0.0.0.0:5678 app.py"]
27+
# CMD ["sh", "-c", "python -m debugpy --listen 0.0.0.0:5678 app.py"]

server/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ flask = "*"
99
[dev-packages]
1010

1111
[requires]
12-
python_version = "3.11.6"
12+
python_version = "3.11"

0 commit comments

Comments
 (0)