Skip to content

Commit 1f75958

Browse files
changing to ml base image. upgrade on pip.
1 parent 432a1b1 commit 1f75958

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# A Dockerfile is used to define how your code will be packaged. This includes
22
# your code, the base image and any additional dependencies you need.
3-
FROM waggle/plugin-base:1.1.1-base
3+
FROM waggle/plugin-base:1.1.1-ml
44

55
WORKDIR /app
66

77
# Now we include the Python requirements.txt file and install any missing dependencies.
88
COPY requirements.txt .
9-
RUN pip3 install --no-cache-dir -r requirements.txt
9+
RUN pip3 install --upgrade --no-cache-dir -r requirements.txt
1010

1111
# Next, we include our code and specify what command should be run to execute it.
1212
COPY main.py .

sage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "numpy-example"
22
description: "Numpy example which computes some stats of a test frame."
3-
version: "0.2.4"
3+
version: "0.3.0"
44
authors: "Sean Shahkarami <[email protected]>"
55
keywords: "example, tutorial, numpy, hackathon"
66
source:

0 commit comments

Comments
 (0)