Skip to content

Commit 2155f36

Browse files
committed
use Python 3.8 base image
1 parent f7caf96 commit 2155f36

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM public.ecr.aws/panorama/panorama-application
1+
FROM public.ecr.aws/panorama/panorama-application:1.2.0-py3.8
22
WORKDIR /panorama
33
COPY . .
4-
RUN pip install --no-cache-dir --upgrade pip && \
5-
pip install --no-cache-dir -r requirements.txt
4+
RUN python3 -m pip install --no-cache-dir --upgrade pip && \
5+
python3 -m pip install --no-cache-dir -r requirements.txt

sample-apps/aws-panorama-sample/packages/123456789012-SAMPLE_CODE-1.0/application.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ def get_logger(name=__name__,level=logging.INFO):
202202
def main():
203203
try:
204204
logger.info("INITIALIZING APPLICATION")
205+
logger.info('Numpy version %s' % np.__version__)
205206
app = Application()
206207
logger.info("PROCESSING STREAMS")
207208
while True:

0 commit comments

Comments
 (0)