diff options
| author | Patrick Spek <p.spek@tyil.nl> | 2025-12-10 10:38:32 +0100 |
|---|---|---|
| committer | Patrick Spek <p.spek@tyil.nl> | 2025-12-10 10:38:32 +0100 |
| commit | a6c22146f815f80ba8c6109a9120ca941d86dd52 (patch) | |
| tree | 8348f974be3cb9da4f3f67bc1f439e11d31ad5ad | |
| parent | ba18e1d4e81d56ee03de4c9f3ca266e750f1e80b (diff) | |
| download | dashlab-a6c22146f815f80ba8c6109a9120ca941d86dd52.tar.gz dashlab-a6c22146f815f80ba8c6109a9120ca941d86dd52.tar.bz2 | |
Include templates in output container
| -rw-r--r-- | Containerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Containerfile b/Containerfile index 6c2db91..5cb2c3f 100644 --- a/Containerfile +++ b/Containerfile @@ -15,9 +15,12 @@ FROM alpine:latest ENV DASHLAB_CONFIG=/opt/dashlab/config.yaml +WORKDIR /opt/dashlab + +COPY --from=build /opt/dashlab/dashlab /opt/dashlab/dashlab COPY --from=build /src/dashlab/README.md /opt/dashlab/README.md COPY --from=build /src/dashlab/config.yaml /opt/dashlab/config.yaml COPY --from=build /src/dashlab/icon /opt/dashlab/icon -COPY --from=build /opt/dashlab/dashlab /opt/dashlab/dashlab +COPY --from=build /src/dashlab/templates /opt/dashlab/templates CMD [ "/opt/dashlab/dashlab" ] |
