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 2cf51e3 commit 149ccf1Copy full SHA for 149ccf1
Dockerfile
@@ -7,13 +7,15 @@
7
8
FROM docker:19
9
10
-# Install ZFS.
11
-RUN apk update && apk add zfs
+# Install dependecies.
+RUN apk update && apk add zfs bash
12
13
-COPY ./bin/dblab-server ./bin
14
-COPY ./api .
15
-COPY ./web .
16
-COPY ./configs .
17
-COPY ./scripts .
+WORKDIR /home/dblab
18
19
-CMD ./bin/dblab-server
+COPY ./bin/dblab-server ./bin/dblabserver
+COPY ./api ./api
+COPY ./web ./web
+COPY ./configs ./configs
+COPY ./scripts ./scripts
20
+
21
+CMD ./bin/dblabserver
0 commit comments