We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 99c6889 + 5885fc3 commit edc2a99Copy full SHA for edc2a99
Dockerfile
@@ -14,20 +14,18 @@
14
# limitations under the License.
15
#
16
17
-FROM quay.io/codait/max-base:v1.3.2
+FROM quay.io/codait/max-base:v1.4.0
18
19
ARG model_bucket=https://max-cdn.cdn.appdomain.cloud/max-image-resolution-enhancer/1.0.0
20
ARG model_file=assets.tar.gz
21
22
-WORKDIR /workspace
23
-
24
RUN wget -nv --show-progress --progress=bar:force:noscroll ${model_bucket}/${model_file} --output-document=assets/${model_file} && \
25
tar -x -C assets/ -f assets/${model_file} -v && rm assets/${model_file}
26
27
-COPY requirements.txt /workspace
+COPY requirements.txt .
28
RUN pip install -r requirements.txt
29
30
-COPY . /workspace
+COPY . .
31
32
# check file integrity
33
RUN sha512sum -c sha512sums.txt
0 commit comments