We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a7a52d6 + 80fec7b commit 2cf3854Copy full SHA for 2cf3854
Dockerfile
@@ -1,10 +1,8 @@
1
FROM python:3
2
+LABEL maintainer="Adam Frank afrank@mozilla.com"
3
4
WORKDIR /app
5
6
COPY . /app
7
-RUN pip3 install . pytest && \
8
- pytest
9
-
10
+RUN python setup.py build test install
README.md
@@ -8,6 +8,14 @@ The cloudsecrets library includes a cli cloud-secrets which exposes all the feat
Current supported platforms include GCP (secretmanager) and AWS (secrets manager).
11
+## Docker
12
+
13
+### Building and Testing
14
15
+```
16
+docker build -t mozilla/cloudsecrets .
17
18
19
## Development
20
21
### Prerequisites
0 commit comments