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.
1 parent adf8213 commit 2247bcdCopy full SHA for 2247bcd
Dockerfile
@@ -7,11 +7,6 @@
7
# Build stage with secrets
8
FROM nvidia/cuda:12.2.0-base-ubuntu22.04 AS builder
9
10
-# Get arguments
11
-# Secrets
12
-ARG GCP_STORAGE_JSON_FILE
13
-ARG MODELS_API_ENV_FILE
14
-
15
RUN apt-get update && apt-get install -y git curl && apt-get clean
16
17
# Work directory of the application
@@ -20,11 +15,6 @@ WORKDIR /src
20
# Copy contents to src/
21
COPY . .
22
23
-# Write secrets
24
-RUN mkdir -p secrets && \
25
- echo "${GCP_STORAGE_JSON_FILE}" | base64 -d > secrets/gcp-storage.json && \
26
- echo "${MODELS_API_ENV_FILE}" | base64 -d > secrets/models-api.env
27
28
18
# Image (OS) type
29
19
FROM nvidia/cuda:12.2.0-base-ubuntu22.04
30
0 commit comments